Skip to content

Commit d21ffbe

Browse files
committed
Braces fix
1 parent fbac77e commit d21ffbe

File tree

43 files changed

+43
-86
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+43
-86
lines changed

code_samples/ai_actions/src/AI/Handler/LLaVaTextToTextActionHandler.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@
1919
public function __construct(
2020
private HttpClientInterface $client,
2121
private string $host = 'http://localhost:8080'
22-
)
23-
{
22+
) {
2423
}
2524

2625
public function supports(ActionInterface $action): bool

code_samples/ai_actions/src/AI/REST/Value/TranscribeAudioAction.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
public function __construct(
1313
private Audio $input,
1414
private RuntimeContext $runtimeContext
15-
)
16-
{
15+
) {
1716
}
1817

1918
public function getInput(): Audio

code_samples/api/commerce/src/Controller/CustomCheckoutController.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ class CustomCheckoutController extends Controller
1414
public function __construct(
1515
private readonly CartServiceInterface $cartService,
1616
private readonly CheckoutServiceInterface $checkoutService
17-
)
18-
{
17+
) {
1918
}
2019

2120
public function showContentAction(): Response

code_samples/api/product_catalog/src/Command/CurrencyCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ public function __construct(
2222
private readonly CurrencyServiceInterface $currencyService,
2323
private readonly UserService $userService,
2424
private readonly PermissionResolver $permissionResolver
25-
)
26-
{
25+
) {
2726
parent::__construct();
2827
}
2928

code_samples/api/product_catalog/src/Command/ProductTypeCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ public function __construct(
2020
private readonly UserService $userService,
2121
private readonly PermissionResolver $permissionResolver,
2222
private readonly ProductTypeServiceInterface $productTypeService
23-
)
24-
{
23+
) {
2524
parent::__construct();
2625
}
2726

code_samples/api/public_php_api/src/Command/AddLanguageCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ public function __construct(
2020
private readonly LanguageService $languageService,
2121
private readonly UserService $userService,
2222
private readonly PermissionResolver $permissionResolver
23-
)
24-
{
23+
) {
2524
parent::__construct();
2625
}
2726

code_samples/api/public_php_api/src/Command/AddLocationToContentCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ public function __construct(
2323
private readonly LocationService $locationService,
2424
private readonly UserService $userService,
2525
private readonly PermissionResolver $permissionResolver
26-
)
27-
{
26+
) {
2827
parent::__construct();
2928
}
3029

code_samples/api/public_php_api/src/Command/BookmarkCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ class BookmarkCommand extends Command
1919
public function __construct(
2020
private readonly BookmarkService $bookmarkService,
2121
private readonly LocationService $locationService
22-
)
23-
{
22+
) {
2423
parent::__construct();
2524
}
2625

code_samples/api/public_php_api/src/Command/CalendarCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ public function __construct(
2222
private readonly PermissionResolver $permissionResolver,
2323
private readonly UserService $userService,
2424
private readonly CalendarServiceInterface $calendarService
25-
)
26-
{
25+
) {
2726
parent::__construct();
2827
}
2928

code_samples/api/public_php_api/src/Command/CreateContentCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ public function __construct(
2525
private readonly LocationService $locationService,
2626
private readonly UserService $userService,
2727
private readonly PermissionResolver $permissionResolver
28-
)
29-
{
28+
) {
3029
parent::__construct();
3130
}
3231

0 commit comments

Comments
 (0)