| Conditions | 3 |
| Paths | 2 |
| Total Lines | 16 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | * @param bool|array $response |
||
| 29 | * @return bool|array |
||
| 30 | */ |
||
| 31 | protected function getKeywordsFromRequest($response) |
||
| 32 | { |
||
| 33 | if (!isset($response['guides'])) return []; |
||
| 34 | |||
| 35 | $keywords = $response['guides']; |
||
| 36 | |||
| 37 | return array_map(function ($keywordData) { |
||
| 38 | return [ |
||
| 39 | 'term' => $keywordData['term'], |
||
| 40 | 'display' => $keywordData['display'], |
||
| 41 | 'position' => $keywordData['position'], |
||
| 42 | ]; |
||
| 43 | }, $keywords); |
||
| 44 | } |
||
| 45 | } |