Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function __construct($entityFieldName, $initialTerm, array $suggestions) |
||
30 | { |
||
31 | $this->entityFieldName = $entityFieldName; |
||
32 | $this->initialTerm = $initialTerm; |
||
33 | |||
34 | foreach ($suggestions as $suggestion) { |
||
35 | $this->suggestions[] = new SuggestionResult($suggestion['term'], $suggestion['weight'], $suggestion['payload']); |
||
36 | } |
||
71 | } |