Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class Router extends \Illuminate\Routing\Router |
||
6 | { |
||
7 | /** |
||
8 | * What to do when current route mismatched because of trailing slash, |
||
9 | * null: do nothing. |
||
10 | * 404: abort 404, not found exception will be threw. |
||
11 | * 301/302: redirect to the url with trailing slash. |
||
12 | * |
||
13 | * @var null|int |
||
14 | */ |
||
15 | public static $mismatchAction = null; |
||
16 | |||
17 | /** |
||
18 | * Add a route to the underlying route collection. |
||
19 | * |
||
20 | * @param array|string $methods |
||
21 | * @param string $uri |
||
22 | * @param array|string|callable|null $action |
||
23 | * @return \Illuminate\Routing\Route |
||
24 | */ |
||
25 | public function addRoute($methods, $uri, $action) |
||
33 |