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

Blacklist::getOptions()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 4
Ratio 100 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 4
loc 4
rs 10
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