Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public static function loadChoices(Mailxpert $mailxpert, CustomFieldCollection $customFields) |
||
23 | { |
||
24 | foreach ($customFields as $customField) { |
||
25 | if (in_array($customField->getType(), ['choice', 'choice_multiple', 'choice_expanded'])) { |
||
26 | $response = CustomFieldsChoicesRequest::get($mailxpert, $customField->getId()); |
||
27 | |||
28 | $customField->setChoices($response->getMailxpertNode()); |
||
29 | } |
||
30 | } |
||
31 | } |
||
32 | } |
||
33 |