Skip to content

Commit

Permalink
Allow routes to override by order of declaration. Fixes #17.
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Lewis <jason.lewis1991@gmail.com>
  • Loading branch information
jasonlewis committed Jan 13, 2013
1 parent 7757948 commit 4dd4d70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Routing/Router.php
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ protected function getName($method, $pattern, array $action)
{
if (isset($action['as'])) return $action['as'];

return $method.' '.$pattern.' '.microtime(true);
return $method.' '.$pattern;
}

/**
Expand Down

0 comments on commit 4dd4d70

Please sign in to comment.