Example #1
0
 /**
  * Sets a list of trusted host patterns.
  * 
  * You should only list the hosts you manage using regexs.
  *
  * @param array $hostPatterns A list of trusted host patterns
  * @static 
  */
 public static function setTrustedHosts($hostPatterns)
 {
     //Method inherited from \Symfony\Component\HttpFoundation\Request
     return \Illuminate\Http\Request::setTrustedHosts($hostPatterns);
 }