| 1 | <?php // phpcs:ignore WordPress.Files.FileName.NotHyphenatedLowercase |
||
| 18 | class Application extends SymfonyApplication { |
||
| 19 | |||
| 20 | const VERSION = '1.0'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Constructor. |
||
| 24 | */ |
||
| 25 | public function __construct() { |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Called when the application is run. |
||
| 32 | * |
||
| 33 | * @param InputInterface $input InputInterface. |
||
| 34 | * @param OutputInterface $output OutputInterface. |
||
| 35 | * @return int |
||
| 36 | */ |
||
| 37 | public function doRun( InputInterface $input, OutputInterface $output ) { |
||
| 42 | |||
| 43 | } |
||
| 44 |