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