Skip to content

Commit

Permalink
fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
bshaffer committed Sep 19, 2024
1 parent cf826e2 commit 38b94a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ApiKeyHeaderCredentials.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static function build(array $args = [])
];

if (is_null($args['apiKey'])) {
throw new ValidationException("Cannot build ApiKeyHeaderCredentials without apiKey option");
throw new ValidationException('Cannot build ApiKeyHeaderCredentials without apiKey option');
}

return new ApiKeyHeaderCredentials($args['apiKey'], $args['quotaProject']);
Expand Down
3 changes: 1 addition & 2 deletions src/Middleware/CredentialsWrapperMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,9 @@
*/
namespace Google\ApiCore\Middleware;

use Google\ApiCore\HeaderCredentialsInterface;
use Google\ApiCore\Call;
use Google\ApiCore\CredentialsWrapper;
use GuzzleHttp\Promise\PromiseInterface;
use Google\ApiCore\HeaderCredentialsInterface;

/**
* Middleware which adds a CredentialsWrapper object to the call options.
Expand Down

0 comments on commit 38b94a2

Please sign in to comment.