| Conditions | 2 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | 2 | public function run($field, $data) |
|
| 14 | { |
||
| 15 | 2 | $value = $this->getFieldValue($field, $data); |
|
| 16 | 2 | return $this->evaluateResult( |
|
| 17 | 2 | $field, |
|
| 18 | 2 | preg_match_all(is_string($field['options']) ? $field['options'] : $field['options'][0], $value) > 0, |
|
| 19 | 2 | "The format of your input is invalid" |
|
| 20 | ); |
||
| 22 | } |