Total Complexity | 6 |
Total Lines | 53 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
15 | class PackageYamlFileReader implements PackageInterface |
||
16 | { |
||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $file; |
||
21 | |||
22 | /** |
||
23 | * BinaryPackageYmlReader constructor. |
||
24 | * |
||
25 | * @param string $file |
||
26 | */ |
||
27 | public function __construct($file) |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @return array |
||
34 | */ |
||
35 | public function asPackageArray() |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * resolve local path URI relative to document location |
||
46 | * |
||
47 | * @param string $uri |
||
48 | */ |
||
49 | private function resolveUri(&$uri) |
||
70 |