1 | <?php |
||
5 | class Directory extends Handler |
||
6 | { |
||
7 | /** |
||
8 | * Delete the directory. |
||
9 | * |
||
10 | * @return bool |
||
11 | */ |
||
12 | 3 | public function delete() |
|
16 | |||
17 | /** |
||
18 | * List the directory contents. |
||
19 | * |
||
20 | * @param bool $recursive |
||
21 | * |
||
22 | * @return array|bool directory contents or false |
||
23 | */ |
||
24 | 3 | public function getContents($recursive = false) |
|
28 | } |
||
29 |