Browse Source

Merge pull request #1408 from cartalyst/develop

Allowing use of third party Routers to handle Routing.
Taylor Otwell 12 years ago
parent
commit
d693a82615
1 changed files with 4 additions and 2 deletions
  1. 4 2
      laravel/laravel.php

+ 4 - 2
laravel/laravel.php

@@ -1,5 +1,7 @@
 <?php namespace Laravel;
 
+use Router;
+
 /*
 |--------------------------------------------------------------------------
 | Bootstrap The Framework Core
@@ -102,7 +104,7 @@ foreach (Bundle::$bundles as $bundle => $config)
 |
 */
 
-Routing\Router::register('*', '(:all)', function()
+Router::register('*', '(:all)', function()
 {
 	return Event::first('404');
 });
@@ -160,7 +162,7 @@ URI::$uri = $uri;
 |
 */
 
-Request::$route = Routing\Router::route(Request::method(), $uri);
+Request::$route = Router::route(Request::method(), $uri);
 
 $response = Request::$route->call();