Jarves\Storage\FileStorage::remove PHP Метод

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

{@inheritDoc}
public remove ( $primaryKey )
    public function remove($primaryKey)
    {
        $this->mapPrimaryKey($primaryKey);
        parent::remove($primaryKey);
        $path = $this->webFilesystem->getPath($primaryKey['id']);
        return $this->webFilesystem->remove($path);
    }