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

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

This method is called in response to rename(). Should attempt to rename path_from to path_to.
public rename ( string $source, string $target ) : boolean
$source string The URL to the current file.
$target string The URL which the path_from should be renamed to.
Результат boolean TRUE on success or FALSE on failure.
    public function rename($source, $target)
    {
        return false;
    }