| Total Complexity | 3 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 7 | class AuthUserManager extends ResourceManager |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * AuthUserManager constructor. |
||
| 11 | * @param $deviceTokenId |
||
| 12 | * @param AuthenticateProvider $auth |
||
| 13 | */ |
||
| 14 | public function __construct($deviceTokenId,$auth) |
||
| 15 | { |
||
| 16 | parent::__construct($auth); |
||
| 17 | |||
| 18 | $this->auth->params['userId'] = $deviceTokenId['user_id']; |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * get all device tokens for user |
||
| 23 | * |
||
| 24 | * @return void|mixed |
||
| 25 | */ |
||
| 26 | public function allDeviceTokens() |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * get user process |
||
| 35 | * |
||
| 36 | * @return void|mixed |
||
| 37 | */ |
||
| 38 | public function userProcess() |
||
| 43 | } |
||
| 44 | } |
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.