Commit bf01e932 authored by Taylor Otwell's avatar Taylor Otwell

fixed variable typo in routing filter class.

parent ad386c84
...@@ -216,7 +216,7 @@ class Filter_Collection { ...@@ -216,7 +216,7 @@ class Filter_Collection {
*/ */
public function on($methods) public function on($methods)
{ {
$methos = (count(func_get_args()) > 1) ? func_get_args() : (array) $methods; $methods = (count(func_get_args()) > 1) ? func_get_args() : (array) $methods;
foreach ($methods as $method) foreach ($methods as $method)
{ {
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* Laravel - A clean and classy framework for PHP web development. * Laravel - A clean and classy framework for PHP web development.
* *
* @package Laravel * @package Laravel
* @version 2.0.0 * @version 2.0.1
* @author Taylor Otwell <taylorotwell@gmail.com> * @author Taylor Otwell <taylorotwell@gmail.com>
* @link http://laravel.com * @link http://laravel.com
*/ */
......
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