Conditions | 4 |
Paths | 5 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4.25 |
Changes | 0 |
1 | <?php |
||
18 | 2 | public function toResource($value, string $type, array $parameters) |
|
19 | { |
||
20 | 2 | if ($value === null) { |
|
21 | return; |
||
22 | } |
||
23 | |||
24 | 2 | if (! $value instanceof \DateTimeInterface) { |
|
25 | 1 | $value = new \DateTimeImmutable((string) $value); |
|
26 | } |
||
27 | |||
28 | 2 | if (isset($parameters[self::PARAMETER_FORMAT])) { |
|
29 | 2 | return $value->format($parameters[self::PARAMETER_FORMAT]); |
|
30 | } |
||
31 | |||
32 | return $value->format(DATE_RFC3339); |
||
33 | } |
||
34 | |||
58 | } |