1 | <?php |
||
12 | class Job extends OperatorResource implements Listable, Retrievable, Creatable, Deletable |
||
13 | { |
||
14 | public $description; |
||
15 | public $tenantId; |
||
16 | public $createdAt; |
||
17 | public $mains; |
||
18 | public $updatedAt; |
||
19 | public $libs; |
||
20 | public $isProtected; |
||
21 | public $interface; |
||
22 | public $type; |
||
23 | public $isPublic; |
||
24 | public $id; |
||
25 | public $name; |
||
26 | |||
27 | protected $resourceKey = 'job'; |
||
28 | protected $resourcesKey = 'jobs'; |
||
29 | |||
30 | protected $aliases = [ |
||
31 | 'created_at' => 'createdAt', |
||
32 | 'updated_at' => 'updatedAt', |
||
33 | 'is_protected' => 'isProtected', |
||
34 | 'tenant_id' => 'tenantId', |
||
35 | 'is_public' => 'isPublic', |
||
36 | ]; |
||
37 | |||
38 | public function retrieve() |
||
43 | |||
44 | public function create(array $userOptions): Creatable |
||
50 | |||
51 | public function delete() |
||
55 | |||
56 | public function update() |
||
61 | |||
62 | public function executeJob(array $options) |
||
68 | |||
69 | public function getJobTypes(array $options = []): array |
||
88 | } |
||
89 |
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.