Total Complexity | 4 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
5 | class Directory extends AbstractFilesystemItem |
||
6 | { |
||
7 | /** |
||
8 | * This is the name of the path type. It should be overriden in child classes. |
||
9 | * |
||
10 | * @var string |
||
11 | */ |
||
12 | protected const PATH_TYPE = 'directory'; |
||
13 | |||
14 | 4 | protected function doCreate(): void |
|
19 | // @codeCoverageIgnoreEnd |
||
20 | } |
||
21 | 4 | } |
|
22 | |||
23 | 6 | protected function isCorrectType(): bool |
|
28 |