コード例 #1
0
ファイル: Cache.php プロジェクト: czim/laravel-cms-core
 /**
  * Retrieve an item from the cache and delete it.
  *
  * @param  string $key
  * @param  mixed  $default
  * @return mixed
  */
 public function pull($key, $default = null)
 {
     return $this->cache->pull($key, $default);
 }