| 1 | <?php |
||
| 8 | class ConsoleKernel |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * User defined commands. |
||
| 12 | * |
||
| 13 | * @var array |
||
| 14 | */ |
||
| 15 | protected $commands = []; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Get all user defined commands. |
||
| 19 | * |
||
| 20 | * @return array |
||
| 21 | */ |
||
| 22 | public function getCommands() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Verify user defined commands. |
||
| 35 | * |
||
| 36 | * @param string $command |
||
| 37 | * |
||
| 38 | * @throws FileNotFound|InvalidCommand |
||
| 39 | */ |
||
| 40 | protected function verifyCommand($command) |
||
| 52 | } |
||
| 53 |