| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | 21 | public function __invoke($subject, string $field): bool |
|
| 40 | { |
||
| 41 | 21 | $value = $subject->$field; |
|
| 42 | 21 | if (!is_scalar($value)) { |
|
| 43 | 3 | return false; |
|
| 44 | } |
||
| 45 | |||
| 46 | 18 | if ($this->strlen($value) < $this->min) { |
|
| 47 | 6 | $subject->$field = $this->strpad($value, $this->min, $this->padString, $this->padType); |
|
| 48 | } |
||
| 49 | |||
| 50 | 18 | return true; |
|
| 51 | } |
||
| 53 |