| 1 | <?php |
||
| 15 | class Application extends \Symfony\Component\Console\Application |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * The name of the application. |
||
| 19 | */ |
||
| 20 | const NAME = 'Commander'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * The version of the application. |
||
| 24 | */ |
||
| 25 | const VERSION = '@git-version@'; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Create application object. |
||
| 29 | */ |
||
| 30 | 2 | public function __construct() |
|
| 34 | } |
||
| 35 |