コード例 #1
0
ファイル: InMemoryStorage.php プロジェクト: cubiche/cubiche
 /**
  * {@inheritdoc}
  */
 public function remove($key)
 {
     $this->validateKey($key);
     $removed = $this->store->removeAt($key);
     if ($removed !== null) {
         return true;
     }
     return false;
 }