| Conditions | 3 |
| Paths | 3 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function fire() |
||
| 29 | { |
||
| 30 | if (!$this->option('force')) { |
||
| 31 | $this->error('This command won\'t run unless you use --force.'); |
||
| 32 | } else { |
||
| 33 | if ($this->laravel->firewall->clear()) { |
||
|
|
|||
| 34 | $this->info('List cleared.'); |
||
| 35 | } else { |
||
| 36 | $this->info('There were no IP addresses to be deleted.'); |
||
| 37 | } |
||
| 53 |