Conditions | 4 |
Paths | 4 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
23 | 36 | public function __invoke($subject, string $field): bool |
|
24 | { |
||
25 | 36 | $value = $subject->$field; |
|
26 | 36 | $timeParts = $this->extractTimeParts($value); |
|
27 | |||
28 | 36 | return ! is_null($timeParts) |
|
29 | 36 | && $this->validateHours($timeParts->hours) |
|
30 | 36 | && $this->validateMinutes($timeParts->minutes) |
|
31 | 36 | && $this->validateSeconds($timeParts->seconds); |
|
32 | } |
||
82 |