Skip to content

Commit 91749b6

Browse files
committed
2432: CS Fixes
1 parent ed05e70 commit 91749b6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Command/FixturesLoadCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class FixturesLoadCommand extends Command
2828
{
2929
public function __construct(
3030
private readonly string $appEnv,
31-
private readonly FixtureLoader $loader
31+
private readonly FixtureLoader $loader,
3232
) {
3333
parent::__construct();
3434
}

src/Fixtures/FixtureLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class FixtureLoader
2020
public function __construct(
2121
private readonly HttpClientInterface $httpClient,
2222
private readonly IndexInterface $index,
23-
private readonly Client $client
23+
private readonly Client $client,
2424
) {
2525
}
2626

src/Service/ElasticSearch/ElasticSearchIndex.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class ElasticSearchIndex implements IndexInterface
1818
{
1919
public function __construct(
20-
private readonly Client $client
20+
private readonly Client $client,
2121
) {
2222
}
2323

@@ -297,7 +297,7 @@ private function getSort(string $indexName): array
297297
],
298298
default => [
299299
'_score',
300-
]
300+
],
301301
};
302302
}
303303
}

0 commit comments

Comments
 (0)