Skip to content

Commit 883e680

Browse files
committed
Updated routes stack.
1 parent b8123dc commit 883e680

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ composer.json file:
3535
```json
3636
{
3737
"require": {
38-
"izniburak/router": "^2"
38+
"izniburak/router": "^2.0"
3939
}
4040
}
4141
```

src/Router.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ protected function addRoute(string $uri, string $method, $callback, $options = [
713713
'before' => $beforeMiddlewares,
714714
'after' => $afterMiddlewares,
715715
];
716-
array_push($this->routes, $data);
716+
array_unshift($this->routes, $data);
717717
}
718718

719719
/**

0 commit comments

Comments
 (0)