Total Complexity | 6 |
Total Lines | 55 |
Duplicated Lines | 0 % |
Coverage | 93.33% |
Changes | 0 |
1 | <?php |
||
12 | class Filesystem implements FilesystemInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var \drupol\phpvfs\Node\DirectoryInterface |
||
16 | */ |
||
17 | private $cwd; |
||
18 | |||
19 | /** |
||
20 | * Filesystem constructor. |
||
21 | * |
||
22 | * @param \drupol\phpvfs\Node\DirectoryInterface $directory |
||
23 | */ |
||
24 | 16 | public function __construct(DirectoryInterface $directory) |
|
27 | 16 | } |
|
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | 14 | public function getCwd(): DirectoryInterface |
|
33 | { |
||
34 | 14 | return $this->cwd; |
|
35 | } |
||
36 | |||
37 | /** |
||
38 | * @return string |
||
39 | */ |
||
40 | 4 | public function pwd(): string |
|
43 | } |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | 2 | public function root(): DirectoryInterface |
|
49 | { |
||
50 | 2 | $root = $this->getCwd()->root(); |
|
51 | |||
52 | 2 | if ($root instanceof DirectoryInterface) { |
|
53 | 2 | return $root; |
|
54 | } |
||
55 | |||
56 | throw new \Exception('Unable to get root directory.'); |
||
57 | } |
||
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | */ |
||
62 | 2 | public function setCwd(DirectoryInterface $dir) |
|
67 | } |
||
68 | } |
||
69 |