| 1 | <?php |
||
| 10 | class Plugin extends OperatorResource implements Listable, Retrievable |
||
| 11 | { |
||
| 12 | public $description; |
||
| 13 | public $versions; |
||
| 14 | public $versionLabels; |
||
| 15 | public $title; |
||
| 16 | public $pluginLabels; |
||
| 17 | public $name; |
||
| 18 | public $tenantId; |
||
| 19 | |||
| 20 | protected $resourceKey = 'plugin'; |
||
| 21 | protected $resourcesKey = 'plugins'; |
||
| 22 | |||
| 23 | protected $aliases = [ |
||
| 24 | 'version_labels' => 'versionLabels', |
||
| 25 | 'plugin_labels' => 'pluginLabels', |
||
| 26 | 'tenant_id' => 'tenantId', |
||
| 27 | 'plugin_name' => 'name', |
||
| 28 | ]; |
||
| 29 | |||
| 30 | public function retrieve() |
||
| 35 | |||
| 36 | public function retrieveDetails() |
||
| 42 | |||
| 43 | public function update() |
||
| 48 | } |
||
| 49 |
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.