Blacklist   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 5
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
/**
3
 * This file is part of the theroadbunch/bouncer package.
4
 *
5
 * (c) Dan McAdams <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace RoadBunch\Bouncer;
12
13
14
use RoadBunch\String\NamedStringCollection;
15
16
/**
17
 * Class Blacklist
18
 *
19
 * @author  Dan McAdams
20
 * @package RoadBunch\Bouncer
21
 */
22
class Blacklist extends NamedStringCollection
23
{
24 5
    public function __construct(array $elements = [])
25
    {
26 5
        parent::__construct(Bouncer::BLACKLIST, $elements);
27 5
    }
28
}
29