Conditions | 5 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function beforeAction($action) |
||
12 | { |
||
13 | if ($this->enableCsrfValidation |
||
14 | && Yii::$app->getErrorHandler()->exception === null |
||
15 | && !Yii::$app->getRequest()->validateCsrfToken()) { |
||
16 | |||
17 | Yii::$app->session->setFlash('error', 'Your security token has expired. Please retry your submission.'); |
||
|
|||
18 | $this->redirect(Yii::$app->request->referrer ?: Yii::$app->homeUrl); |
||
19 | return false; |
||
20 | } |
||
21 | |||
22 | return parent::beforeAction($action); |
||
23 | } |
||
39 | } |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.