Example #1
0
 /**
  * Empty the Session Array and remove the Session Cookie.
  */
 public static function destroy()
 {
     $_SESSION = array();
     session_destroy();
     Session::removeSessionCookie();
 }