| 1 | <?php |
||
| 8 | class Mkdir extends AbstractPlugin |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @inheritdoc |
||
| 12 | */ |
||
| 13 | 210 | public function getMethod() |
|
| 17 | |||
| 18 | /** |
||
| 19 | * Creates a directory. |
||
| 20 | * |
||
| 21 | * @param string $dirname |
||
| 22 | * @param int $mode |
||
| 23 | * @param int $options |
||
| 24 | * |
||
| 25 | * @return bool True on success, false on failure. |
||
| 26 | * |
||
| 27 | * @throws \League\Flysystem\FileNotFoundException |
||
| 28 | */ |
||
| 29 | 60 | public function handle($dirname, $mode, $options) |
|
| 46 | } |
||
| 47 |