Skip to content

Commit

Permalink
Code checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
webeweb committed Feb 21, 2023
1 parent cc486f4 commit fa43478
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Provider/AbstractProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function __construct(LoggerInterface $logger = null) {
}

/**
* Build the configuration.
* Builds the configuration.
*
* @param string $host The host.
* @param string|null $apiKey The API key.
Expand All @@ -73,7 +73,7 @@ private function buildConfiguration(string $host, string $apiKey = null): array
}

/**
* Call API.
* Calls the API.
*
* @param AbstractRequest $request The request.
* @param array $queryData The query data.
Expand All @@ -91,7 +91,6 @@ protected function callApi(AbstractRequest $request, array $queryData, string $e
$host = null === $endpointPath ? self::ENDPOINT_PATH . $this->getEndpointVersion() : $endpointPath;

$config = $this->buildConfiguration($host, $apiKey);

$client = new Client($config);

$method = "GET";
Expand Down

0 comments on commit fa43478

Please sign in to comment.