| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3.0416 |
| Changes | 0 | ||
| 1 | <?php |
||
| 42 | 9 | public function validate($input): bool |
|
| 43 | { |
||
| 44 | // for array |
||
| 45 | 9 | if (is_array($input)) { |
|
| 46 | 4 | return in_array($this->containsValue, $input, false); |
|
| 47 | } |
||
| 48 | // for string |
||
| 49 | 5 | if (is_string($input)) { |
|
| 50 | 5 | return false !== mb_stripos($input, $this->containsValue, 0, mb_detect_encoding($input)); |
|
| 51 | } |
||
| 52 | // can't compare |
||
| 53 | return false; |
||
| 54 | } |
||
| 55 | |||
| 66 |