Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

Commit 8174096

Browse files
committed
Correct code style issues
1 parent 77bbd59 commit 8174096

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
},
4848
"scripts": {
4949
"qa": "composer check-cs && composer stan && composer stan",
50-
"check-cs": "./vendor/bin/php-cs-fixer fix --dry-run",
50+
"check-cs": "./vendor/bin/php-cs-fixer fix --dry-run --diff",
5151
"fix-cs": "./vendor/bin/php-cs-fixer fix",
5252
"test": "./vendor/bin/phpunit tests",
5353
"stan": "./vendor/bin/phpstan analyse",

src/Dispatch/MethodDispatcher.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ public function __construct(
2424
private SchemaLoaderInterface $schemaLoader,
2525
private MethodValidatorInterface $methodValidator,
2626
private MethodProviderInterface $methodProvider
27-
)
28-
{
27+
) {
2928
}
3029

3130
/**

src/Endpoint.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ public function __construct(
3939
private UuidFactoryInterface $uuidFactory,
4040
private StreamFactoryInterface $streamFactory,
4141
private ?LoggerInterface $logger = null
42-
)
43-
{
42+
) {
4443
}
4544

4645
/**

0 commit comments

Comments
 (0)