1 | <?php |
||
9 | class UnblockIp extends Command |
||
10 | { |
||
11 | /** |
||
12 | * The name and signature of the console command. |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $signature = 'firewall:unblockip'; |
||
17 | |||
18 | /** |
||
19 | * The console command description. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $description = 'Unblock ips based on their block period'; |
||
24 | |||
25 | /** |
||
26 | * Create a new command instance. |
||
27 | */ |
||
28 | public function __construct() |
||
32 | |||
33 | /** |
||
34 | * Execute the console command. |
||
35 | * |
||
36 | * @return mixed |
||
37 | */ |
||
38 | public function handle() |
||
58 | } |
||
59 |