Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
39 | 7 | public function __invoke($subject, $field, $min, $pad_string = ' ', $pad_type = STR_PAD_RIGHT) |
|
40 | { |
||
41 | 7 | $value = $subject->$field; |
|
42 | 7 | if (! is_scalar($value)) { |
|
43 | 1 | return false; |
|
44 | } |
||
45 | 6 | if ($this->strlen($value) < $min) { |
|
46 | 2 | $subject->$field = $this->strpad($value, $min, $pad_string, $pad_type); |
|
47 | } |
||
48 | 6 | return true; |
|
49 | } |
||
50 | } |
||
51 |