1 | <?php namespace JobApis\Jobs\Client\Providers; |
||
8 | abstract class AbstractProvider |
||
9 | { |
||
10 | /** |
||
11 | * HTTP Client |
||
12 | * |
||
13 | * @var HttpClient |
||
14 | */ |
||
15 | protected $client; |
||
16 | |||
17 | /** |
||
18 | * Query params |
||
19 | * |
||
20 | * @var AbstractQuery |
||
21 | */ |
||
22 | protected $query; |
||
23 | |||
24 | /** |
||
25 | * Create new client |
||
26 | * |
||
27 | * @param array $parameters |
||
|
|||
28 | */ |
||
29 | 16 | public function __construct(AbstractQuery $query) |
|
34 | |||
35 | /** |
||
36 | * Returns the standardized job object |
||
37 | * |
||
38 | * @param array|object $payload |
||
39 | * |
||
40 | * @return \JobApis\Jobs\Client\Job |
||
41 | */ |
||
42 | abstract public function createJobObject($payload); |
||
43 | |||
44 | /** |
||
45 | * Job response object default keys that should be set |
||
46 | * |
||
47 | * @return string |
||
48 | */ |
||
49 | abstract public function getDefaultResponseFields(); |
||
50 | |||
51 | /** |
||
52 | * Get listings path |
||
53 | * |
||
54 | * @return string |
||
55 | */ |
||
56 | abstract public function getListingsPath(); |
||
57 | |||
58 | /** |
||
59 | * Uses the Query to make a call to the client |
||
60 | * |
||
61 | * @return \Psr\Http\Message\ResponseInterface |
||
62 | */ |
||
63 | 6 | public function getClientResponse() |
|
80 | |||
81 | /** |
||
82 | * Get format |
||
83 | * |
||
84 | * @return string Currently only 'json' and 'xml' supported |
||
85 | */ |
||
86 | 6 | public function getFormat() |
|
90 | |||
91 | /** |
||
92 | * Makes the api call and returns a collection of job objects |
||
93 | * |
||
94 | * @return \JobApis\Jobs\Client\Collection |
||
95 | * @throws MissingParameterException |
||
96 | */ |
||
97 | 6 | public function getJobs() |
|
115 | |||
116 | /** |
||
117 | * Get source attribution |
||
118 | * |
||
119 | * @return string |
||
120 | */ |
||
121 | 6 | public function getSource() |
|
134 | |||
135 | /** |
||
136 | * Parse job attributes against defaults |
||
137 | * |
||
138 | * @param array $attributes |
||
139 | * @param array $defaults |
||
140 | * |
||
141 | * @return array |
||
142 | */ |
||
143 | 6 | public static function parseAttributeDefaults(array $attributes, array $defaults = array()) |
|
152 | |||
153 | /** |
||
154 | * Parse location string into components. |
||
155 | * |
||
156 | * @param string $location |
||
157 | * |
||
158 | * @return array |
||
159 | **/ |
||
160 | 2 | public static function parseLocation($location, $separator = ', ') |
|
164 | |||
165 | /** |
||
166 | * Sets http client |
||
167 | * |
||
168 | * @param HttpClient $client |
||
169 | * |
||
170 | * @return AbstractProvider |
||
171 | */ |
||
172 | 16 | public function setClient(HttpClient $client) |
|
178 | |||
179 | /** |
||
180 | * Sets query object |
||
181 | * |
||
182 | * @param AbstractQuery $query |
||
183 | * |
||
184 | * @return AbstractProvider |
||
185 | */ |
||
186 | 16 | public function setQuery(AbstractQuery $query) |
|
192 | |||
193 | /** |
||
194 | * Adds a single job item to a collection (passed by reference) |
||
195 | * |
||
196 | * @param $collection Collection |
||
197 | * @param $item array |
||
198 | * |
||
199 | * @return $collection |
||
200 | */ |
||
201 | 4 | protected function addJobItemToCollection(&$collection, $item = []) |
|
215 | |||
216 | /** |
||
217 | * Create and get collection of jobs from given listings |
||
218 | * |
||
219 | * @param array $listings |
||
220 | * |
||
221 | * @return Collection |
||
222 | */ |
||
223 | 4 | protected function getJobsCollectionFromListings(array $listings = []) |
|
233 | |||
234 | /** |
||
235 | * Get raw listings from payload |
||
236 | * |
||
237 | * @param array $payload |
||
238 | * |
||
239 | * @return array |
||
240 | */ |
||
241 | 4 | protected function getRawListings(array $payload = array()) |
|
259 | |||
260 | /** |
||
261 | * Navigate through a payload array looking for a particular index |
||
262 | * |
||
263 | * @param array $index The index sequence we are navigating down |
||
264 | * @param array $value The portion of the config array to process |
||
265 | * |
||
266 | * @return mixed |
||
267 | */ |
||
268 | 4 | protected static function getValue($index, $value) |
|
285 | |||
286 | /** |
||
287 | * Attempt to parse string as given format |
||
288 | * |
||
289 | * @param string $string |
||
290 | * @param string $format |
||
291 | * |
||
292 | * @return array |
||
293 | */ |
||
294 | 4 | protected function parseAsFormat($string, $format) |
|
304 | |||
305 | /** |
||
306 | * Get value current index |
||
307 | * |
||
308 | * @param mixed $index |
||
309 | * |
||
310 | * @return array|null |
||
311 | */ |
||
312 | 4 | private static function getValueCurrentIndex(&$index) |
|
316 | |||
317 | /** |
||
318 | * Checks if given value is an array and that it has contents |
||
319 | * |
||
320 | * @param mixed $array |
||
321 | * |
||
322 | * @return boolean |
||
323 | */ |
||
324 | 4 | private static function isArrayNotEmpty($array) |
|
328 | |||
329 | /** |
||
330 | * Attempt to parse as Json |
||
331 | * |
||
332 | * @param string $string |
||
333 | * |
||
334 | * @return array |
||
335 | */ |
||
336 | 4 | private function parseAsJson($string) |
|
352 | |||
353 | /** |
||
354 | * Attempt to parse as XML |
||
355 | * |
||
356 | * @param string $string |
||
357 | * |
||
358 | * @return array |
||
359 | */ |
||
360 | private function parseAsXml($string) |
||
379 | |||
380 | /** |
||
381 | * Determine whether a string ends with another string |
||
382 | * |
||
383 | * @param $string |
||
384 | * @param $test |
||
385 | * |
||
386 | * @return bool |
||
387 | */ |
||
388 | 6 | private function stringEndsWith($string, $test) |
|
397 | } |
||
398 |
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.
Consider the following example. The parameter
$italy
is not defined by the methodfinale(...)
.The most likely cause is that the parameter was removed, but the annotation was not.