1 | <?php |
||
10 | class JobExecution extends OperatorResource implements Listable, Retrievable, Deletable |
||
11 | { |
||
12 | public $jobConfigs; |
||
13 | public $isProtected; |
||
14 | public $inputId; |
||
15 | public $jobId; |
||
16 | public $clusterId; |
||
17 | public $createdAt; |
||
18 | public $endTime; |
||
19 | public $outputId; |
||
20 | public $isPublic; |
||
21 | public $updatedAt; |
||
22 | public $returnCode; |
||
23 | public $dataSourceUrls; |
||
24 | public $tenantId; |
||
25 | public $startTime; |
||
26 | public $id; |
||
27 | public $oozieJobId; |
||
28 | public $info; |
||
29 | public $createdTime; |
||
30 | public $status; |
||
31 | public $group; |
||
32 | public $externalId; |
||
33 | public $acl; |
||
34 | public $run; |
||
35 | public $appName; |
||
36 | public $parentId; |
||
37 | public $conf; |
||
38 | public $appPath; |
||
39 | public $toString; |
||
40 | public $lastModTime; |
||
41 | public $consoleUrl; |
||
42 | |||
43 | protected $resourceKey = 'job_execution'; |
||
44 | protected $resourcesKey = 'job_executions'; |
||
45 | |||
46 | protected $aliases = [ |
||
47 | 'job_configs' => 'jobConfigs', |
||
48 | 'is_protected' => 'isProtected', |
||
49 | 'input_id' => 'inputId', |
||
50 | 'job_id' => 'jobId', |
||
51 | 'cluster_id' => 'clusterId', |
||
52 | 'created_at' => 'createdAt', |
||
53 | 'end_time' => 'endTime', |
||
54 | 'output_id' => 'outputId', |
||
55 | 'is_public' => 'isPublic', |
||
56 | 'updated_at' => 'updatedAt', |
||
57 | 'reutrn_code' => 'returnCode', |
||
58 | 'data_source_urls' => 'dataSourceUrls', |
||
59 | 'tenant_id' => 'tenantId', |
||
60 | 'start_time' => 'startTime', |
||
61 | 'oozie_job_id' => 'oozieJobId', |
||
62 | ]; |
||
63 | |||
64 | public function retrieve() |
||
69 | |||
70 | public function delete() |
||
74 | |||
75 | public function update() |
||
80 | |||
81 | public function cancel() |
||
86 | |||
87 | public function refreshStatus() |
||
92 | } |
||
93 |
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.