Bolt\Storage\Database\Schema\Timer::setCheckExpiry PHP Метод

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

We only want to do these checks once per hour, per session, since it's pretty time consuming… Unless specifically requested.
public setCheckExpiry ( )
    public function setCheckExpiry()
    {
        try {
            $this->expired = false;
            $this->cacheFile->put(Carbon::now()->getTimestamp());
        } catch (IOException $e) {
            // Something went wrong
        }
    }