Example #1
1
 /**
  * Normalizes a query string.
  * 
  * It builds a normalized query string, where keys/value pairs are alphabetized,
  * have consistent escaping and unneeded delimiters are removed.
  *
  * @param string $qs Query string
  * @return string A normalized query string for the Request
  * @static 
  */
 public static function normalizeQueryString($qs)
 {
     //Method inherited from \Symfony\Component\HttpFoundation\Request
     return \Illuminate\Http\Request::normalizeQueryString($qs);
 }