Skip to content

Commit 568438e

Browse files
27pchrislactions-user
authored andcommitted
Fix styling
1 parent 854b3ec commit 568438e

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

tests/AggregateRoots/CommandHandlerTest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
class AddItem
1717
{
1818
public function __construct(
19-
#[AggregateUuid] public string $cartUuid,
19+
#[AggregateUuid]
20+
public string $cartUuid,
2021
public string $name
2122
) {
2223
}
@@ -26,7 +27,8 @@ public function __construct(
2627
class ClearCart
2728
{
2829
public function __construct(
29-
#[AggregateUuid] public string $cartUuid
30+
#[AggregateUuid]
31+
public string $cartUuid
3032
) {
3133
}
3234
}

tests/Commands/CommandBusTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
class AddItem
2323
{
2424
public function __construct(
25-
#[AggregateUuid] public string $cartUuid,
25+
#[AggregateUuid]
26+
public string $cartUuid,
2627
public string $name
2728
) {
2829
}

0 commit comments

Comments
 (0)