| Conditions | 2 |
| Paths | 2 |
| Total Lines | 15 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 46 | protected function process() |
||
| 47 | { |
||
| 48 | // Only use the SCO ID. To change Folder use scoMove |
||
| 49 | if (isset($this->parameters['folder-id'])) { |
||
| 50 | unset($this->parameters['folder-id']); |
||
| 51 | } |
||
| 52 | |||
| 53 | $response = Converter::convert( |
||
| 54 | $this->client->doGet( |
||
|
|
|||
| 55 | $this->parameters + ['session' => $this->client->getSession()] |
||
| 56 | ) |
||
| 57 | ); |
||
| 58 | StatusValidate::validate($response['status']); |
||
| 59 | |||
| 60 | return true; |
||
| 61 | } |
||
| 63 |
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.