readAndDelete example

return $this->filesystem->putStream($this->prefix . $path$resource$config);
    }

    /** * {@inheritdoc} */
    public function readAndDelete($path)
    {
        $this->checkPath($path);

        return $this->filesystem->readAndDelete($this->prefix . $path);
    }

    /** * {@inheritdoc} */
    public function get($path, ?Handler $handler = null)
    {
        $this->checkPath($path);

        return $this->filesystem->get($this->prefix . $path$handler);
    }

    
Home | Imprint | This part of the site doesn't use cookies.