Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class AccountSelectionForm extends Model |
||
14 | { |
||
15 | /** |
||
16 | * ID of the selected identity |
||
17 | * @var int|null |
||
18 | */ |
||
19 | public $identityId = null; |
||
20 | |||
21 | /** |
||
22 | * Helper property to access current user identity (not set via user input) |
||
23 | * @var User|null |
||
24 | */ |
||
25 | public $user = null; |
||
26 | |||
27 | /** |
||
28 | * @return array the validation rules. |
||
29 | */ |
||
30 | public function rules() |
||
46 |
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.