Nette\Caching\Storages\FileStorage::read PHP Метод

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

Read from cache.
public read ( $key ) : mixed | null
Результат mixed | null
    public function read($key)
    {
        $meta = $this->readMetaAndLock($this->getCacheFile($key), LOCK_SH);
        if ($meta && $this->verify($meta)) {
            return $this->readData($meta);
            // calls fclose()
        } else {
            return NULL;
        }
    }