| Total Complexity | 4 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class SmsProviderField extends BaseField |
||
| 18 | { |
||
| 19 | /** {@inheritdoc} */ |
||
| 20 | public function getValue() |
||
| 21 | { |
||
| 22 | if (\is_array($this->value)) { |
||
| 23 | return $this->value; |
||
| 24 | } |
||
| 25 | return explode('##', $this->value); |
||
| 26 | } |
||
| 27 | |||
| 28 | /** {@inheritdoc} */ |
||
| 29 | public function getOperator(): string |
||
| 32 | } |
||
| 33 | } |
||
| 34 |