Browse Source

Merge pull request #4311 from mickgeek/patch-2

Remove extra import and fix comment
tags/2.0.0-rc
Carsten Brandt 10 years ago
parent
commit
21ed49a6a8
  1. 3
      framework/filters/VerbFilter.php

3
framework/filters/VerbFilter.php

@ -11,7 +11,6 @@ use Yii;
use yii\base\ActionEvent;
use yii\base\Behavior;
use yii\web\Controller;
use yii\web\HttpException;
use yii\web\MethodNotAllowedHttpException;
/**
@ -83,7 +82,7 @@ class VerbFilter extends Behavior
/**
* @param ActionEvent $event
* @return boolean
* @throws HttpException when the request method is not allowed.
* @throws MethodNotAllowedHttpException when the request method is not allowed.
*/
public function beforeAction($event)
{

Loading…
Cancel
Save