mirror of
https://github.com/laravel/laravel.git
synced 2025-02-20 11:53:14 +08:00
Merge remote-tracking branch 'pedroborges/develop' into request_is
This commit is contained in:
commit
c972fe198b
@ -58,6 +58,24 @@ class Request {
|
||||
return ($uri == '') ? '/' : Str::lower($uri);
|
||||
}
|
||||
|
||||
/**
|
||||
* Check the request URI.
|
||||
*
|
||||
* @param mixed $uri
|
||||
* @return bool
|
||||
*/
|
||||
public static function is($uri)
|
||||
{
|
||||
if (is_array($uri))
|
||||
{
|
||||
return (in_array(static::uri(), $uri)) ? true : false;
|
||||
}
|
||||
else
|
||||
{
|
||||
return (static::uri() == $uri) ? true : false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the request method.
|
||||
*
|
||||
|
Loading…
x
Reference in New Issue
Block a user