Browse Source

working on the route class.

Taylor Otwell 13 years ago
parent
commit
eb193c1d12
3 changed files with 3 additions and 6 deletions
  1. 1 1
      laravel/routing/route.php
  2. 0 4
      laravel/routing/router.php
  3. 2 1
      tests/cases/laravel/route.test.php

+ 1 - 1
laravel/routing/route.php

@@ -58,7 +58,7 @@ class Route {
 		// Extract each URI from the route key. Since the route key has the request
 		// method, we will extract that from the string. If the URI points to the
 		// root of the application, a single forward slash will be returned.
-		$uris = array_get($action, 'handles', array());
+		$uris = array_get($action, 'handles', array($key));
 
 		$this->uris = array_map(array($this, 'extract'), $uris);
 

+ 0 - 4
laravel/routing/router.php

@@ -200,8 +200,6 @@ class Router {
 
 			$action = array('uses' => Bundle::prefix($bundle).'home@index');
 
-			$action['handles'] = array($destination);
-
 			return new Route($method.' '.$uri, $action);
 		}
 
@@ -245,8 +243,6 @@ class Router {
 
 			$action = array('uses' => $prefix.$controller.'@'.$method);
 
-			$action['handles'] = array($destination);
-
 			return new Route($destination, $action, $segments);
 		}
 	}

+ 2 - 1
tests/cases/laravel/route.test.php

@@ -19,9 +19,10 @@ class RouteTest extends PHPUnit_Framework_TestCase {
 	{
 		$route = new Laravel\Routing\Route('GET /', array('handles' => array('GET /foo/bar')));
 
+		$this->assertFalse($route->handles('/'));
+		$this->assertFalse($route->handles('baz'));
 		$this->assertTrue($route->handles('foo/*'));
 		$this->assertTrue($route->handles('foo/bar'));
-		$this->assertFalse($route->handles('baz'));
 
 		$route = new Laravel\Routing\Route('GET /', array('handles' => array('GET /', 'GET /home')));