| Total Complexity | 6 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class ContainsProtocol implements FilterInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @param array $paths Array of paths. |
||
| 13 | * @return array Valid paths. |
||
| 14 | */ |
||
| 15 | 1 | public function filter(array $paths) |
|
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $path |
||
| 29 | * @return boolean |
||
| 30 | */ |
||
| 31 | 1 | private function containsProtocol($path) |
|
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param string $path |
||
| 38 | * @return boolean |
||
| 39 | */ |
||
| 40 | 1 | private function containsProtocolMarker($path) |
|
| 43 | } |
||
| 44 | } |