Pimcore\Model\Tool\TmpStore::update PHP 메소드

update() 공개 메소드

public update ( null $lifetime = null ) : mixed
$lifetime null
리턴 mixed
    public function update($lifetime = null)
    {
        if (!$lifetime) {
            $lifetime = 86400;
        }
        return $this->getDao()->add($this->getId(), $this->getData(), $this->getTag(), $lifetime);
    }