コード例 #1
0
ファイル: _ide_helper.php プロジェクト: eipe/mytentsite
 /**
  * Get an item from the session, or store the default value.
  *
  * @param string $key
  * @param \Closure $callback
  * @return mixed 
  * @static 
  */
 public static function remember($key, $callback)
 {
     return \Illuminate\Session\Store::remember($key, $callback);
 }