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

Whitelist::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 3
Ratio 100 %

Importance

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