示例#1
0
 /**
  * Load Old - loads the old input values through the session
  *
  * @return void
  * @author Dan Cox
  */
 public static function loadOld()
 {
     if (Session::has('Input')) {
         static::$old = Session::decryptSession('Input');
     }
 }