]> git.mxchange.org Git - friendica.git/blob - bin/console.php
Using method-chaining for DICE
[friendica.git] / bin / console.php
1 #!/usr/bin/env php
2 <?php
3
4 use Dice\Dice;
5
6 require dirname(__DIR__) . '/vendor/autoload.php';
7
8 $dice = (new Dice())->addRules(include __DIR__ . '/../static/dependencies.config.php');
9
10 (new Friendica\Core\Console($dice, $argv))->execute();