| 1 | <?php |
||
| 7 | class Report extends Base |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * The console command name. |
||
| 11 | * |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | protected $name = 'firewall:list'; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * The console command description. |
||
| 18 | * |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | protected $description = 'List all IP address, white and blacklisted.'; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Create a new command instance. |
||
| 25 | */ |
||
| 26 | 38 | public function __construct() |
|
| 30 | |||
| 31 | /** |
||
| 32 | * List all ips from all lists. |
||
| 33 | * |
||
| 34 | * @return mixed |
||
| 35 | */ |
||
| 36 | 1 | public function fire() |
|
| 58 | } |
||
| 59 |