Commit 14961350 authored by Alex Whitman's avatar Alex Whitman

Automatically wrap numeric routes in parentheses

parent 3a62036a
......@@ -174,6 +174,7 @@ class Router {
*/
public static function register($method, $route, $action)
{
if (ctype_digit($route)) $route = "({$route})";
if (is_string($route)) $route = explode(', ', $route);
// If the developer is registering multiple request methods to handle
......
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