Browse Source

Route updated to ensure that the root Controller alias is called, rather than the one within its own namespace.

Signed-off-by: Kirk Bushell <torm3nt@gmail.com>
Kirk Bushell 11 years ago
parent
commit
8f79855808
1 changed files with 1 additions and 0 deletions
  1. 1 0
      laravel/routing/route.php

+ 1 - 0
laravel/routing/route.php

@@ -1,6 +1,7 @@
 <?php namespace Laravel\Routing;
 
 use Closure;
+use \Controller;
 use Laravel\Str;
 use Laravel\URI;
 use Laravel\Bundle;