@@ -18,8 +18,8 @@ public function __construct(private TranslatorInterface $translator)
18
18
*/
19
19
public function formatDiff (
20
20
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
23
23
): string {
24
24
$ from = self ::formatDateTime ($ from );
25
25
$ to = self ::formatDateTime ($ to );
@@ -53,7 +53,7 @@ public function formatDiff(
53
53
*
54
54
* @source https://github.com/symfony/symfony/blob/ad72245261792c6b5d2db821fcbd141b11095215/src/Symfony/Component/Console/Helper/Helper.php#L97
55
55
*/
56
- public function formatDuration (float $ seconds , string $ locale = null ): string
56
+ public function formatDuration (float $ seconds , string | null $ locale = null ): string
57
57
{
58
58
static $ timeFormats = [
59
59
[0 , 'duration.none ' ],
@@ -94,8 +94,8 @@ public function formatDuration(float $seconds, string $locale = null): string
94
94
*/
95
95
public function formatAge (
96
96
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
99
99
): string {
100
100
$ from = self ::formatDateTime ($ from );
101
101
$ to = self ::formatDateTime ($ to );
0 commit comments