| Conditions | 4 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | 1 | public function setData($data) |
|
| 16 | { |
||
| 17 | 1 | if (! is_string($data) && ! is_array($data)) |
|
| 18 | 1 | throw new \RuntimeException('ListField data must be a string CSV or other delimited list: in ' . $this->name ); |
|
| 19 | |||
| 20 | 1 | if (is_string($data)) |
|
| 21 | 1 | $data = explode($this->delimiter, $data); |
|
| 22 | |||
| 23 | 1 | $this->data = $data; |
|
| 24 | 1 | return $this; |
|
| 25 | } |
||
| 26 | |||
| 56 |