| 1 | <?php |
||
| 9 | class Rmdir extends AbstractPlugin |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @inheritdoc |
||
| 13 | */ |
||
| 14 | 210 | public function getMethod() |
|
| 18 | |||
| 19 | /** |
||
| 20 | * Delete a directory. |
||
| 21 | * |
||
| 22 | * @param string $dirname path to directory |
||
| 23 | * @param int $options |
||
| 24 | * |
||
| 25 | * @return bool |
||
| 26 | * |
||
| 27 | * @throws \Twistor\Flysystem\Exception\DirectoryNotEmptyException |
||
| 28 | */ |
||
| 29 | 21 | public function handle($dirname, $options) |
|
| 52 | } |
||
| 53 |