| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 48 | protected function process() |
||
| 49 | { |
||
| 50 | $permission = new $this->permission(); |
||
| 51 | $permission->setAclId($this->scoId); |
||
| 52 | $permission->setPrincipalId(Permission::RECORDING_PUBLIC); |
||
| 53 | $permission->setPermissionId(Permission::MEETING_PRINCIPAL_PUBLIC_ACCESS); |
||
| 54 | $this->client->permissionUpdate($permission); |
||
|
|
|||
| 55 | |||
| 56 | $parameters = Parameter::instance() |
||
| 57 | ->set('isMtgPasscodeReq', true) |
||
| 58 | ->set('permissionId', Permission::RECORDING_PUBLIC) |
||
| 59 | ->set('principalId', Permission::MEETING_PRINCIPAL_PUBLIC_ACCESS); |
||
| 60 | |||
| 61 | return $this->client->aclFieldUpdate( |
||
| 62 | $this->scoId, |
||
| 63 | 'meetingPasscode', |
||
| 64 | $this->passcode, |
||
| 65 | $parameters |
||
| 66 | ); |
||
| 69 |
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.