| 1 | <?php |
||
| 8 | class MakeDirectory |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Create the directory specified by the $file if it does not exist |
||
| 12 | * |
||
| 13 | * @param LocalFile $file |
||
| 14 | * @param int $mode |
||
| 15 | * |
||
| 16 | * @return LocalFile The original file inputted |
||
| 17 | * @throws MakeDirectoryFailedException |
||
| 18 | */ |
||
| 19 | 10 | public function makeDirectory(LocalFile $file, $mode = 0777) |
|
| 34 | } |
||
| 35 |