Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2.0185 |
Changes | 0 |
1 | <?php |
||
20 | 9 | public function validate($value, string $valueIdentifier = null):bool |
|
21 | { |
||
22 | 9 | $this->value = $value; |
|
23 | 9 | if (! isset($this->options['min'])) { |
|
24 | $this->success = true; |
||
25 | } else { |
||
26 | 9 | $this->success = $this->getStringLength($value) >= $this->options['min']; |
|
27 | } |
||
28 | |||
29 | 9 | return $this->success; |
|
30 | } |
||
31 | } |
||
32 |