| Total Complexity | 5 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 42 | class XProcessDir implements IProcessDirs |
||
| 43 | { |
||
| 44 | public function createDir(array $entry, bool $deep = false): bool |
||
| 45 | { |
||
| 46 | return true; |
||
| 47 | } |
||
| 48 | |||
| 49 | public function readDir(array $entry, bool $loadRecursive = false, bool $wantSize = false): array |
||
| 50 | { |
||
| 51 | return []; |
||
| 52 | } |
||
| 53 | |||
| 54 | public function copyDir(array $source, array $dest): bool |
||
| 55 | { |
||
| 56 | return true; |
||
| 57 | } |
||
| 58 | |||
| 59 | public function moveDir(array $source, array $dest): bool |
||
| 60 | { |
||
| 61 | return true; |
||
| 62 | } |
||
| 63 | |||
| 64 | public function deleteDir(array $entry, bool $deep = false): bool |
||
| 65 | { |
||
| 66 | return true; |
||
| 67 | } |
||
| 69 |