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;
    }