| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | protected static function runApplication() { |
||
| 35 | self::$app = new Application( Config::APPLICATION_TITLE, '@package_version@' ); |
||
| 36 | self::$app->addCommands( array( |
||
| 37 | new Command\DumpCommand(), |
||
| 38 | new Command\HiCommand(), |
||
| 39 | new Command\ListDumpsCommand(), |
||
| 40 | new Command\LoadCommand(), |
||
| 41 | new Command\SelfUpdateCommand(), |
||
| 42 | ) ); |
||
| 43 | self::$app->run(); |
||
| 44 | } |
||
| 45 | } |
||
| 46 |