Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.0416 |
Changes | 0 |
1 | <?php |
||
27 | 6 | public function validate($input) : bool |
|
28 | { |
||
29 | // for array |
||
30 | 6 | if (is_array($input)) { |
|
31 | 4 | return in_array($this->containsValue, $input, true); |
|
32 | } |
||
33 | // for string |
||
34 | 2 | if (is_string($input)) { |
|
35 | 2 | return false !== mb_strpos($input, $this->containsValue, 0, mb_detect_encoding($input)); |
|
36 | } |
||
37 | return false; |
||
38 | } |
||
39 | } |
||
40 |