| 1 | <?php namespace Arcanedev\LogViewer\Commands; |
||
| 12 | class ClearLogsCommand extends Command |
||
| 13 | { |
||
| 14 | /* ----------------------------------------------------------------- |
||
| 15 | | Properties |
||
| 16 | | ----------------------------------------------------------------- |
||
| 17 | */ |
||
| 18 | |||
| 19 | /** |
||
| 20 | * The console command name. |
||
| 21 | * |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $name = 'log-viewer:clear'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * The console command description. |
||
| 28 | * |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | protected $description = 'Clear all generated log files'; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * The name and signature of the console command. |
||
| 35 | * |
||
| 36 | * @var string |
||
| 37 | */ |
||
| 38 | protected $signature = 'log-viewer:clear'; |
||
| 39 | |||
| 40 | |||
| 41 | /* ----------------------------------------------------------------- |
||
| 42 | | Main Methods |
||
| 43 | | ----------------------------------------------------------------- |
||
| 44 | */ |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Execute the console command. |
||
| 48 | */ |
||
| 49 | 3 | public function handle() |
|
| 54 | |||
| 55 | } |
||
| 56 |