|
@@ -367,11 +367,14 @@ class Router {
|
|
|
|
|
|
|
|
|
|
|
|
- foreach (static::all() as $key => $value)
|
|
|
+ foreach (static::routes() as $method => $routes)
|
|
|
{
|
|
|
- if (array_get($value, 'name') === $name)
|
|
|
+ foreach ($routes as $key => $value)
|
|
|
{
|
|
|
- return static::$names[$name] = array($key => $value);
|
|
|
+ if (isset($value['name']) and $value['name'] === $name)
|
|
|
+ {
|
|
|
+ return static::$names[$name] = array($key => $value);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -397,11 +400,14 @@ class Router {
|
|
|
|
|
|
|
|
|
|
|
|
- foreach (static::all() as $uri => $route)
|
|
|
+ foreach (static::routes() as $method => $routes)
|
|
|
{
|
|
|
- if (array_get($route, 'uses') == $action)
|
|
|
+ foreach ($routes as $key => $value)
|
|
|
{
|
|
|
- return static::$uses[$action] = array($uri => $route);
|
|
|
+ if (isset($value['uses']) and $value['uses'] === $action)
|
|
|
+ {
|
|
|
+ return static::$uses[$action] = array($key => $value);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -490,26 +496,6 @@ class Router {
|
|
|
return strtr($key, static::$patterns);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- * Get all of the routes across all request methods.
|
|
|
- *
|
|
|
- * @return array
|
|
|
- */
|
|
|
- public static function all()
|
|
|
- {
|
|
|
- $all = array();
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- foreach (static::$methods as $method)
|
|
|
- {
|
|
|
- $all = array_merge($all, static::routes($method));
|
|
|
- }
|
|
|
-
|
|
|
- return $all;
|
|
|
- }
|
|
|
-
|
|
|
|
|
|
* Get all of the registered routes, with fallbacks at the end.
|
|
|
*
|