Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Zbigniew Malcherczyk <[email protected]>
  • Loading branch information
Prometee and Ferror committed May 4, 2022
1 parent 9b019f4 commit de86a6c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function __construct(
private ResponseCheckerInterface $responseChecker,
private IriConverterInterface $iriConverter,
private SharedStorageInterface $sharedStorage,
private string $apiUrlPrefix
private string $apiUrlPrefix,
) {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function __construct(
private ResponseCheckerInterface $responseChecker,
private IriConverterInterface $iriConverter,
private SharedStorageInterface $sharedStorage,
private string $apiUrlPrefix
private string $apiUrlPrefix,
) {
}

Expand Down
2 changes: 1 addition & 1 deletion src/Sylius/Behat/Context/Api/Shop/ChannelContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function __construct(
private ApiClientInterface $client,
private ResponseCheckerInterface $responseChecker,
private SharedStorageInterface $sharedStorage,
private string $apiUrlPrefix
private string $apiUrlPrefix,
) {
}

Expand Down
2 changes: 1 addition & 1 deletion src/Sylius/Behat/Context/Api/Shop/HomepageContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ final class HomepageContext implements Context
public function __construct(
private ApiClientInterface $client,
private ResponseCheckerInterface $responseChecker,
private string $apiUrlPrefix
private string $apiUrlPrefix,
) {
}

Expand Down
10 changes: 5 additions & 5 deletions src/Sylius/Behat/Context/Api/Shop/OrderContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@
final class OrderContext implements Context
{
public function __construct(
private ApiClientInterface $shopClient,
private ApiClientInterface $adminClient,
private ApiClientInterface $shopClient,
private ApiClientInterface $adminClient,
private ResponseCheckerInterface $responseChecker,
private SharedStorageInterface $sharedStorage,
private IriConverterInterface $iriConverter,
private SharedStorageInterface $sharedStorage,
private IriConverterInterface $iriConverter,
private SecurityServiceInterface $securityService,
private RequestFactoryInterface $requestFactory,
private string $apiUrlPrefix,
private string $apiUrlPrefix,
) {
}

Expand Down

0 comments on commit de86a6c

Please sign in to comment.