| 1 | <?php |
||
| 21 | final class ConsoleEvents |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * Dispatched before console arguments are resolved to a command. |
||
| 25 | * |
||
| 26 | * @see PreResolveEvent |
||
| 27 | */ |
||
| 28 | const PRE_RESOLVE = 'pre-resolve'; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Dispatched before a command is handled. |
||
| 32 | * |
||
| 33 | * @see PreHandleEvent |
||
| 34 | */ |
||
| 35 | const PRE_HANDLE = 'pre-handle'; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Dispatched after building the configuration. |
||
| 39 | * |
||
| 40 | * @see ConfigEvent |
||
| 41 | */ |
||
| 42 | const CONFIG = 'config'; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * May not be instantiated. |
||
| 46 | */ |
||
| 47 | private function __construct() |
||
| 50 | } |
||
| 51 |