Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function __construct() |
||
23 | { |
||
24 | error_reporting(-1); |
||
25 | |||
26 | parent::__construct('Thruster Project Generator', '1.0'); |
||
27 | |||
28 | $this->add(new GenerateCommand()); |
||
29 | $this->add(new CreateRepoCommand()); |
||
30 | $this->add(new EnableCICommand()); |
||
31 | |||
32 | $this->setDefaultCommand('main'); |
||
33 | } |
||
46 |