8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4c53b9d + 79ff05b commit d693a82Copy full SHA for d693a82
laravel/laravel.php
@@ -1,5 +1,7 @@
1
<?php namespace Laravel;
2
3
+use Router;
4
+
5
/*
6
|--------------------------------------------------------------------------
7
| Bootstrap The Framework Core
@@ -102,7 +104,7 @@
102
104
|
103
105
*/
106
-Routing\Router::register('*', '(:all)', function()
107
+Router::register('*', '(:all)', function()
108
{
109
return Event::first('404');
110
});
@@ -160,7 +162,7 @@
160
162
161
163
164
-Request::$route = Routing\Router::route(Request::method(), $uri);
165
+Request::$route = Router::route(Request::method(), $uri);
166
167
$response = Request::$route->call();
168
0 commit comments