Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
12 | 36 | public function __construct(Application $dic) |
|
13 | { |
||
14 | 36 | $this->app = new \Symfony\Component\Console\Application('Karma', Application::VERSION); |
|
15 | |||
16 | 36 | $this->app->add(new Command\Hydrate($dic)); |
|
17 | 36 | $this->app->add(new Command\Generate($dic)); |
|
18 | 36 | $this->app->add(new Command\Display($dic)); |
|
19 | 36 | $this->app->add(new Command\Diff($dic)); |
|
20 | 36 | $this->app->add(new Command\Rollback($dic)); |
|
21 | 36 | } |
|
22 | |||
33 |