Skip to content

Commit fedd7d2

Browse files
Fix ci
1 parent 01ecb8c commit fedd7d2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/DateTimeFormatter.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ public function __construct(private TranslatorInterface $translator)
1818
*/
1919
public function formatDiff(
2020
int|string|\DateTimeInterface $from,
21-
int|string|\DateTimeInterface $to = null,
22-
string $locale = null
21+
int|string|\DateTimeInterface|null $to = null,
22+
string|null $locale = null
2323
): string {
2424
$from = self::formatDateTime($from);
2525
$to = self::formatDateTime($to);
@@ -53,7 +53,7 @@ public function formatDiff(
5353
*
5454
* @source https://github.com/symfony/symfony/blob/ad72245261792c6b5d2db821fcbd141b11095215/src/Symfony/Component/Console/Helper/Helper.php#L97
5555
*/
56-
public function formatDuration(float $seconds, string $locale = null): string
56+
public function formatDuration(float $seconds, string|null $locale = null): string
5757
{
5858
static $timeFormats = [
5959
[0, 'duration.none'],
@@ -94,8 +94,8 @@ public function formatDuration(float $seconds, string $locale = null): string
9494
*/
9595
public function formatAge(
9696
int|string|\DateTimeInterface $from,
97-
int|string|\DateTimeInterface $to = null,
98-
string $locale = null
97+
int|string|\DateTimeInterface|null $to = null,
98+
string|null $locale = null
9999
): string {
100100
$from = self::formatDateTime($from);
101101
$to = self::formatDateTime($to);

0 commit comments

Comments
 (0)