Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
28 | 27 | public function __invoke($subject, string $field): bool |
|
29 | { |
||
30 | 27 | $value = $subject->$field; |
|
31 | 27 | if (!is_scalar($value)) { |
|
32 | 3 | return false; |
|
33 | } |
||
34 | 24 | if ($this->strlen($value) > $this->max) { |
|
35 | 12 | $subject->$field = $this->substr($value, 0, $this->max); |
|
36 | } |
||
37 | |||
38 | 24 | return true; |
|
39 | } |
||
41 |