Conditions | 3 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
15 | 8 | public static function createFromArray(array $parts): self |
|
16 | { |
||
17 | 8 | if (array_key_exists('UNTIL', $parts) && is_string($parts['UNTIL'])) { |
|
18 | 2 | $parts['UNTIL'] = new \DateTimeImmutable($parts['UNTIL']); |
|
19 | } |
||
20 | |||
21 | 8 | $rule = new self(); |
|
22 | 8 | $rule->parts = $parts; |
|
23 | |||
24 | 8 | return $rule; |
|
25 | } |
||
26 | |||
50 |