| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 51 | public function updateUserEntity($user) |
||
| 52 | { |
||
| 53 | $this->get('fos_user.user_manager')->updateUser($user, false); |
||
| 54 | parent::updateEntity($user); |
||
|
1 ignored issue
–
show
|
|||
| 55 | } |
||
| 56 | } |
||
| 57 |
This check looks for a call to a parent method whose name is different than the method from which it is called.
Consider the following code:
The
getFirstName()method in theSoncalls the wrong method in the parent class.