Commit 4f036cf7 authored by Taylor Otwell's avatar Taylor Otwell

add spacing to router.

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