Commit d446ccc8 authored by Pedro Borges's avatar Pedro Borges

Added the method 'is' to request.php

parent 150fa6a3
......@@ -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.
*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment