| Total Complexity | 8 |
| Total Lines | 60 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class DefaultController extends Controller |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @inheritdoc |
||
| 17 | */ |
||
| 18 | public function actions() |
||
| 24 | ], |
||
| 25 | ]; |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Renders the index view for the module |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | public function actionIndex() |
||
| 33 | { |
||
| 34 | return $this->render('index'); |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Displays contact page. |
||
| 39 | * |
||
| 40 | * @return Response|string |
||
| 41 | */ |
||
| 42 | public function actionContact() |
||
| 62 | ]); |
||
| 63 | } |
||
| 64 | |||
| 65 | /** |
||
| 66 | * Displays about page. |
||
| 67 | * |
||
| 68 | * @return string |
||
| 69 | */ |
||
| 70 | public function actionAbout() |
||
| 73 | } |
||
| 74 | } |
||
| 75 |
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.