Skip to content

Commit b6dd72d

Browse files
committed
Fix cs
1 parent 58f3772 commit b6dd72d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/ArrayData.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ final class ArrayData
1111
{
1212
/**
1313
* Internal representation of data data.
14-
*
14+
*
1515
* @var array<mixed>
1616
*/
1717
private array $data = [];

src/Filter/DateTimeFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function __invoke($value, ?string $format = null, ?DateTimeZone $timezone
5252
private function formatDateTime(
5353
DateTimeImmutable $value,
5454
string $format,
55-
?DateTimeZone $timezone = null
55+
?DateTimeZone $timezone = null,
5656
): string {
5757
if ($timezone) {
5858
// This would only with only work with UTC as default time zone.

src/Filter/NumberFormatFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function __invoke(
2121
$value,
2222
int $decimals = 0,
2323
string $decimalSeparator = '.',
24-
string $thousandsSeparator = ','
24+
string $thousandsSeparator = ',',
2525
) {
2626
return number_format($value, $decimals, $decimalSeparator, $thousandsSeparator);
2727
}

0 commit comments

Comments
 (0)