fixed variable typo in routing filter class.
This commit is contained in:
parent
ad386c8468
commit
bf01e932c3
|
@ -216,7 +216,7 @@ public function only($methods)
|
||||||
*/
|
*/
|
||||||
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 @@
|
||||||
* 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
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue