Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
23 | class Check extends CheckAbstract |
||
24 | { |
||
25 | /** |
||
26 | * @var StreamWrapperExists |
||
27 | */ |
||
28 | private $checker; |
||
29 | |||
30 | /** |
||
31 | * @param string|array|\Traversable $wrappers Stream wrapper name or an array of names |
||
32 | * |
||
33 | * @throws \InvalidArgumentException |
||
34 | */ |
||
35 | 2 | public function __construct($wrappers) |
|
38 | 2 | } |
|
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | 2 | public function check() |
|
48 |