1 | <?php |
||
23 | class SkeletonHelper { |
||
24 | |||
25 | /** |
||
26 | * Copy skeleton. |
||
27 | * |
||
28 | * @param string $src The source directory. |
||
29 | * @param string $dst The destination directory. |
||
30 | * @return bool[] Returns the assets. |
||
31 | */ |
||
32 | public static function copySkeleton($src, $dst) { |
||
52 | |||
53 | /** |
||
54 | * List skeleton. |
||
55 | * |
||
56 | * @param string $directory The directory. |
||
57 | * @return string[] Returns the skeletons. |
||
58 | * @throws DirectoryNotFoundException Throws a directory not found exception if the directory does not exist. |
||
59 | */ |
||
60 | public static function listSkeleton($directory) { |
||
73 | } |
||
74 |