Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function __construct() |
||
21 | { |
||
22 | parent::__construct($this->title); |
||
23 | |||
24 | $this->add(new Command\Collection\All()); |
||
25 | $this->add(new Command\Collection\Reload()); |
||
26 | $this->add(new Command\Collection\Remove()); |
||
27 | $this->add(new Command\Collection\Create()); |
||
28 | $this->add(new Command\Schema\All()); |
||
29 | $this->add(new Command\Schema\LinkConfig()); |
||
30 | $this->add(new Command\Schema\Download()); |
||
31 | $this->add(new Command\Schema\Upload()); |
||
32 | $this->add(new Command\Schema\Remove()); |
||
33 | } |
||
34 | |||
45 |