コード例 #1
0
ファイル: _ide_helper.php プロジェクト: matthiku/cSpot
 /**
  * Increment the value of an item in the session.
  *
  * @param string $key
  * @param int $amount
  * @return mixed 
  * @static 
  */
 public static function increment($key, $amount = 1)
 {
     return \Illuminate\Session\Store::increment($key, $amount);
 }