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