コード例 #1
0
ファイル: CacheItem.php プロジェクト: dspacelabs/cache
 /**
  * {@inheritDoc}
  */
 public function exists()
 {
     return $this->adapter->exists($this);
 }
コード例 #2
0
ファイル: CacheItemPool.php プロジェクト: dspacelabs/cache
 /**
  * {@inheritDoc}
  */
 public function commit()
 {
     foreach ($this->toBeSaved as $item) {
         $this->adapter->saveItem($item);
     }
 }