Skip to content

Commit 3fb9a63

Browse files
authored
chore: cs fixes (#78)
1 parent 36038e9 commit 3fb9a63

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/Domain/Value/QueryParameter/FirstPublishedAtGt.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
final readonly class FirstPublishedAtGt
2121
{
2222
public function __construct(
23-
private \DateTimeInterface $dateTime
23+
private \DateTimeInterface $dateTime,
2424
) {
2525
}
2626

src/Domain/Value/QueryParameter/FirstPublishedAtLt.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
final readonly class FirstPublishedAtLt
2121
{
2222
public function __construct(
23-
private \DateTimeInterface $dateTime
23+
private \DateTimeInterface $dateTime,
2424
) {
2525
}
2626

src/Domain/Value/QueryParameter/PublishedAtGt.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
final readonly class PublishedAtGt
2121
{
2222
public function __construct(
23-
private \DateTimeInterface $dateTime
23+
private \DateTimeInterface $dateTime,
2424
) {
2525
}
2626

src/Domain/Value/QueryParameter/PublishedAtLt.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
final readonly class PublishedAtLt
2121
{
2222
public function __construct(
23-
private \DateTimeInterface $dateTime
23+
private \DateTimeInterface $dateTime,
2424
) {
2525
}
2626

src/Domain/Value/QueryParameter/UpdatedAtGt.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
final readonly class UpdatedAtGt
2121
{
2222
public function __construct(
23-
private \DateTimeInterface $dateTime
23+
private \DateTimeInterface $dateTime,
2424
) {
2525
}
2626

src/Domain/Value/QueryParameter/UpdatedAtLt.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
final readonly class UpdatedAtLt
2121
{
2222
public function __construct(
23-
private \DateTimeInterface $dateTime
23+
private \DateTimeInterface $dateTime,
2424
) {
2525
}
2626

0 commit comments

Comments
 (0)