| 1 | <?php |
||
| 5 | class Account extends AbstractObject |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Insert new account. |
||
| 9 | * |
||
| 10 | * @param $params |
||
| 11 | * |
||
| 12 | * @return bool |
||
| 13 | */ |
||
| 14 | public function insert($params) |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Check if account already exists on SF. |
||
| 23 | * |
||
| 24 | * @param string $email |
||
| 25 | * |
||
| 26 | * @return bool|array |
||
| 27 | */ |
||
| 28 | public function checkAlreadyExists($email) |
||
| 40 | } |
||
| 41 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.