Passed
Push — master ( 6bfad1...b9baef )
by Antonio Carlos
03:31
created

Blacklist::fire()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 4

Duplication

Lines 7
Ratio 100 %

Importance

Changes 0
Metric Value
cc 2
eloc 4
nc 2
nop 0
dl 7
loc 7
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
namespace PragmaRX\Firewall\Vendor\Laravel\Artisan;
4
5
use Symfony\Component\Console\Input\InputArgument;
6
use Symfony\Component\Console\Input\InputOption;
7
8
class Blacklist extends AddToList
9
{
10
    /**
11
     * Current list name.
12
     *
13
     * @var string
14
     */
15
    protected $listName = 'blacklist';
16
17
    /**
18
     * The console command name.
19
     *
20
     * @var string
21
     */
22
    protected $name = 'firewall:blacklist';
23
}
24