Total Complexity | 3 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | trait CopyFilesTrait |
||
15 | { |
||
16 | /** |
||
17 | * Copy a directory. |
||
18 | * |
||
19 | * @param FilesystemInterface $source |
||
20 | * @param FilesystemInterface $destination |
||
21 | * @param string $path |
||
22 | * |
||
23 | * @return void |
||
24 | */ |
||
25 | 1 | private function copyDirectory( |
|
32 | } |
||
33 | 1 | } |
|
34 | |||
35 | /** |
||
36 | * Copy a file. |
||
37 | * |
||
38 | * @param FilesystemInterface $source |
||
39 | * @param FilesystemInterface $destination |
||
40 | * @param string $path |
||
41 | * |
||
42 | * @return void |
||
43 | */ |
||
44 | 1 | private function copyFile( |
|
55 |