Neos\Flow\ResourceManagement\Streams\ResourceStreamWrapper::removeDirectory PHP Метод

removeDirectory() публичный Метод

This method is called in response to rmdir(). Note: If the wrapper does not support creating directories it must throw a \BadMethodCallException.
public removeDirectory ( string $path, integer $options ) : void
$path string The directory URL which should be removed.
$options integer A bitwise mask of values, such as STREAM_MKDIR_RECURSIVE.
Результат void
    public function removeDirectory($path, $options)
    {
        throw new \BadMethodCallException(__CLASS__ . ' does not support removeDirectory().', 1256827649);
    }