Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
20 | class NamedStringCollection extends StringCollection implements NamedStringCollectionInterface |
||
21 | { |
||
22 | protected $name; |
||
23 | |||
24 | /** |
||
25 | * FilterList constructor. |
||
26 | * |
||
27 | * @param string $name |
||
28 | * @param string[] $elements An array of strings |
||
29 | */ |
||
30 | 11 | public function __construct(string $name, array $elements = []) |
|
34 | 11 | } |
|
35 | |||
36 | /** |
||
37 | * The list name |
||
38 | * |
||
39 | * @return string |
||
40 | */ |
||
41 | 11 | public function name(): string |
|
46 |