Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.2098 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
9 | 5 | public static function hydrate(&$value, array $attributes = []): void |
|
10 | { |
||
11 | 5 | if ($value === null) { |
|
12 | 3 | return; |
|
13 | } |
||
14 | |||
15 | 2 | if ($attributes['immutable']) { |
|
16 | $value = new \DateTimeImmutable($value, new \DateTimeZone($attributes['timezone'])); |
||
17 | return; |
||
18 | } |
||
19 | |||
20 | 2 | $value = new \DateTime($value, new \DateTimeZone($attributes['timezone'])); |
|
21 | 2 | } |
|
41 |