Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | protected function getKeywordsFromRequest($response) |
||
33 | { |
||
34 | $keywords = $response['guides']; |
||
35 | |||
36 | if (empty($keywords)) { |
||
37 | return []; |
||
38 | } |
||
39 | |||
40 | return array_map(function ($keywordData) { |
||
41 | return [ |
||
42 | 'term' => $keywordData['term'], |
||
43 | 'display' => $keywordData['display'], |
||
44 | 'position' => $keywordData['position'], |
||
45 | ]; |
||
46 | }, $keywords); |
||
47 | } |
||
49 |