Skip to content

Commit b4dd223

Browse files
committed
Update Route.php
1 parent 617048b commit b4dd223

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

src/Inphinit/Routing/Route.php

+6-9
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,16 @@ public static function set($method, $path, $action)
3232

3333
if (strpos($path, '{:') !==false) {
3434
self::$hasParams = true;
35-
36-
$routes = &parent::$httpParamRoutes;
37-
} else {
38-
$routes = &parent::$httpRoutes;
3935
}
4036

4137
$path = parent::$prefixPath . $path;
4238

39+
$routes = &parent::$httpRoutes;
40+
4341
if (!isset($routes[$path])) {
4442
$routes[$path] = array();
4543
}
4644

47-
$routes[$path][ strtoupper(trim($method)) ] = $action;
48-
4945
if (is_array($method)) {
5046
foreach ($method as $value) {
5147
$routes[$path][ strtoupper(trim($value)) ] = $action;
@@ -67,13 +63,14 @@ public static function get()
6763
}
6864

6965
$args = array();
66+
$routes = &parent::$httpRoutes;
7067
$path = \UtilsPath();
7168
$method = $_SERVER['REQUEST_METHOD'];
7269

73-
if (isset(parent::$httpRoutes[$path])) {
74-
$verbs = parent::$httpRoutes[$path];
70+
if (isset($routes[$path])) {
71+
$verbs = $routes[$path];
7572
} elseif (self::$hasParams) {
76-
foreach (parent::$httpParamRoutes as $route => $actions) {
73+
foreach ($routes as $route => $actions) {
7774
if (parent::find($route, $path, $args)) {
7875
$verbs = $actions;
7976
break;

0 commit comments

Comments
 (0)