Skip to content

Commit

Permalink
Correct code style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
usox committed Jun 23, 2021
1 parent 77bbd59 commit 8174096
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
},
"scripts": {
"qa": "composer check-cs && composer stan && composer stan",
"check-cs": "./vendor/bin/php-cs-fixer fix --dry-run",
"check-cs": "./vendor/bin/php-cs-fixer fix --dry-run --diff",
"fix-cs": "./vendor/bin/php-cs-fixer fix",
"test": "./vendor/bin/phpunit tests",
"stan": "./vendor/bin/phpstan analyse",
Expand Down
3 changes: 1 addition & 2 deletions src/Dispatch/MethodDispatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ public function __construct(
private SchemaLoaderInterface $schemaLoader,
private MethodValidatorInterface $methodValidator,
private MethodProviderInterface $methodProvider
)
{
) {
}

/**
Expand Down
3 changes: 1 addition & 2 deletions src/Endpoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ public function __construct(
private UuidFactoryInterface $uuidFactory,
private StreamFactoryInterface $streamFactory,
private ?LoggerInterface $logger = null
)
{
) {
}

/**
Expand Down

0 comments on commit 8174096

Please sign in to comment.