| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 49 | protected function process() |
||
| 50 | { |
||
| 51 | $response = Converter::convert( |
||
| 52 | $this->client->doGet([ |
||
|
|
|||
| 53 | 'action' => 'permissions-info', |
||
| 54 | 'acl-id' => $this->aclId, |
||
| 55 | 'principal-id' => $this->principalId, |
||
| 56 | 'session' => $this->client->getSession(), |
||
| 57 | ]) |
||
| 58 | ); |
||
| 59 | StatusValidate::validate($response['status']); |
||
| 60 | $permission = new $this->permission(); |
||
| 61 | FillObject::setAttributes($permission, $response['permission']); |
||
| 62 | |||
| 63 | return $permission; |
||
| 64 | } |
||
| 66 |
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.