1 | <?php |
||
12 | class JobBinary extends OperatorResource implements Listable, Retrievable, Creatable, Deletable |
||
13 | { |
||
14 | public $description; |
||
15 | public $url; |
||
16 | public $tenantId; |
||
17 | public $createdAt; |
||
18 | public $updatedAt; |
||
19 | public $isProtected; |
||
20 | public $isPublic; |
||
21 | public $id; |
||
22 | public $name; |
||
23 | |||
24 | protected $resourceKey = 'job_binary'; |
||
25 | protected $resourcesKey = 'binaries'; |
||
26 | |||
27 | protected $aliases = [ |
||
28 | 'tenant_id' => 'tenantId', |
||
29 | 'created_at' => 'createdAt', |
||
30 | 'updated_at' => 'updatedAt', |
||
31 | 'is_protected' => 'isProtected', |
||
32 | 'is_public' => 'isPublic', |
||
33 | ]; |
||
34 | |||
35 | public function retrieve() |
||
40 | |||
41 | public function create(array $userOptions): Creatable |
||
47 | |||
48 | public function delete() |
||
52 | |||
53 | public function update() |
||
58 | |||
59 | public function downloadData(): StreamInterface |
||
65 | } |
||
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.