Gaufrette\Adapter\InMemory::rename PHP Method

rename() public method

public rename ( $sourceKey, $targetKey )
    public function rename($sourceKey, $targetKey)
    {
        $content = $this->read($sourceKey);
        $this->delete($sourceKey);
        return (bool) $this->write($targetKey, $content);
    }