Conditions | 2 |
Paths | 2 |
Total Lines | 22 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
42 | protected function process() |
||
43 | { |
||
44 | $response = Converter::convert( |
||
45 | $this->client->doGet([ |
||
|
|||
46 | 'action' => 'list-recordings', |
||
47 | 'folder-id' => $this->folderId, |
||
48 | 'session' => $this->client->getSession(), |
||
49 | ]) |
||
50 | ); |
||
51 | |||
52 | StatusValidate::validate($response['status']); |
||
53 | |||
54 | $recordings = []; |
||
55 | |||
56 | foreach ($response['recordings'] as $recordingAttributes) { |
||
57 | |||
58 | $scoRecording = new $this->scoRecord(); |
||
59 | FillObject::setAttributes($scoRecording, $recordingAttributes); |
||
60 | $recordings[] = $scoRecording; |
||
61 | } |
||
62 | |||
63 | return $recordings; |
||
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.