Example #1
0
 /**
  * Indicates whether this request originated from a trusted proxy.
  *
  * This can be useful to determine whether or not to trust the
  * contents of a proxy-specific header.
  *
  * @return bool true if the request came from a trusted proxy, false otherwise
  * @static
  */
 public static function isFromTrustedProxy()
 {
     //Method inherited from \Symfony\Component\HttpFoundation\Request
     return \Illuminate\Http\Request::isFromTrustedProxy();
 }