Commit 9f138aa9 authored by Ben Corlett's avatar Ben Corlett Committed by Ben Corlett

Allowing use of third party Routers to handle Routing.

A class alias has always been provided in applications/config/application.php, however it is never called as the Router class is always directly targeting the Laravel namespaced class.
Signed-off-by: 's avatarBen Corlett <bencorlett@me.com>
parent 4c53b9d9
<?php namespace Laravel; <?php namespace Laravel;
use Router;
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Bootstrap The Framework Core | Bootstrap The Framework Core
...@@ -102,7 +104,7 @@ foreach (Bundle::$bundles as $bundle => $config) ...@@ -102,7 +104,7 @@ foreach (Bundle::$bundles as $bundle => $config)
| |
*/ */
Routing\Router::register('*', '(:all)', function() Router::register('*', '(:all)', function()
{ {
return Event::first('404'); return Event::first('404');
}); });
...@@ -160,7 +162,7 @@ URI::$uri = $uri; ...@@ -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(); $response = Request::$route->call();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment