コード例 #1
0
ファイル: EncryptingStore.php プロジェクト: AltThree/Storage
 /**
  * Delete an item from the storage if it exists.
  *
  * @param string $key
  *
  * @return void
  */
 public function delete($key)
 {
     $this->store->delete($key);
 }
コード例 #2
0
ファイル: FallbackStore.php プロジェクト: AltThree/Storage
 /**
  * Delete an item from the storage if it exists.
  *
  * @param string $key
  *
  * @return void
  */
 public function delete($key)
 {
     $this->main->delete($key);
     $this->fallback->delete($key);
 }
コード例 #3
0
ファイル: CachingStore.php プロジェクト: AltThree/Storage
 /**
  * Delete an item from the storage if it exists.
  *
  * @param string $key
  *
  * @return void
  */
 public function delete($key)
 {
     $this->store->delete($key);
     $this->cache->forget("store.{$key}");
 }