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