Gaufrette\Adapter\InMemory::rename PHP Méthode

rename() public méthode

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