예제 #1
0
파일: Session.php 프로젝트: df-arif/df-core
 public static function flush()
 {
     \Session::flush();
 }
예제 #2
0
 /**
  * Logs out user
  *
  * @return array
  */
 protected function handleDELETE()
 {
     Session::logout();
     //Clear everything in session.
     Session::flush();
     return ['success' => true];
 }