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

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

{@inheritDoc}
public update ( $primaryKey, $values )
    public function update($primaryKey, $values)
    {
        $this->mapPrimaryKey($primaryKey);
        $path = $this->getPathFromPK($primaryKey);
        $this->webFilesystem->write($path, $values['content']);
        return parent::update($primaryKey, $values);
    }