Example #1
0
 /**
  * Overrides the PHP global variables according to this request instance.
  * 
  * It overrides $_GET, $_POST, $_REQUEST, $_SERVER, $_COOKIE.
  * $_FILES is never overridden, see rfc1867
  *
  * @static 
  */
 public static function overrideGlobals()
 {
     //Method inherited from \Symfony\Component\HttpFoundation\Request
     return \Illuminate\Http\Request::overrideGlobals();
 }