Skip to content

Commit e4fb606

Browse files
authored
Remove return type hint
1 parent 6245e5c commit e4fb606

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Converter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function toFormattedDateString()
3939
*
4040
* @return string
4141
*/
42-
public function toFormattedDayDateString(): string
42+
public function toFormattedDayDateString()
4343
{
4444
return $this->format('l j F Y');
4545
}
@@ -136,7 +136,7 @@ public function toDayDateTimeString($unitPrecision = 'second')
136136
*
137137
* @return string
138138
*/
139-
public function toFormattedMonthYearString(): string
139+
public function toFormattedMonthYearString()
140140
{
141141
return $this->format('F Y');
142142
}

0 commit comments

Comments
 (0)