Exemplo n.º 1
0
 public function load()
 {
     $this->item = unserialize(File::read($this->getPath()));
     if (!$this->item instanceof CacheItem) {
         $this->item = null;
         throw new CorruptedDataException();
     }
 }