|
@@ 735-737 (lines=3) @@
|
| 732 |
|
$enableAgents = self::getEnableAgents(); |
| 733 |
|
foreach ($enableAgents as $name => &$options) { |
| 734 |
|
if (is_array($options)) { |
| 735 |
|
if (isset($options['sendSms']) && is_callable($options['sendSms'])) { |
| 736 |
|
$options['sendSms'] = $serializer->serialize($options['sendSms']); |
| 737 |
|
} |
| 738 |
|
if (isset($options['voiceVerify']) && is_callable($options['voiceVerify'])) { |
| 739 |
|
$options['voiceVerify'] = $serializer->serialize($options['voiceVerify']); |
| 740 |
|
} |
|
@@ 738-740 (lines=3) @@
|
| 735 |
|
if (isset($options['sendSms']) && is_callable($options['sendSms'])) { |
| 736 |
|
$options['sendSms'] = $serializer->serialize($options['sendSms']); |
| 737 |
|
} |
| 738 |
|
if (isset($options['voiceVerify']) && is_callable($options['voiceVerify'])) { |
| 739 |
|
$options['voiceVerify'] = $serializer->serialize($options['voiceVerify']); |
| 740 |
|
} |
| 741 |
|
} |
| 742 |
|
} |
| 743 |
|
|