Skip to content

Commit

Permalink
Remove unused parameter (#13206)
Browse files Browse the repository at this point in the history
  • Loading branch information
David authored and taylorotwell committed Apr 19, 2016
1 parent d0b5291 commit f13bb7f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Illuminate/Foundation/helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -612,12 +612,11 @@ function response($content = '', $status = 200, array $headers = [])
* @param string $name
* @param array $parameters
* @param bool $absolute
* @param \Illuminate\Routing\Route $route
* @return string
*/
function route($name, $parameters = [], $absolute = true, $route = null)
function route($name, $parameters = [], $absolute = true)
{
return app('url')->route($name, $parameters, $absolute, $route);
return app('url')->route($name, $parameters, $absolute);
}
}

Expand Down

0 comments on commit f13bb7f

Please sign in to comment.