| 1 | <?php |
||
| 13 | class TestLogging extends Command |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * The console command name. |
||
| 17 | * |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | protected $name = 'rp:gelf-support:test-logging'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * The console command description. |
||
| 24 | * |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | protected $description = 'Throw an exception to test the logging integration'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @throws Exception |
||
| 31 | */ |
||
| 32 | public function fire() |
||
| 36 | } |
||
| 37 |