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

Whitelist::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
class Whitelist extends AddToList
6
{
7
    /**
8
     * Current list name.
9
     *
10
     * @var string
11
     */
12
    protected $listName = 'whitelist';
13
14
    /**
15
     * The console command name.
16
     *
17
     * @var string
18
     */
19
    protected $name = 'firewall:whitelist';
20
}
21