Skip to content

Commit

Permalink
CLI-1044: Update guzzle and psr components (#383)
Browse files Browse the repository at this point in the history
* CLI-1044: Symfony updates

* update guzzlehttp/psr7

* update guzzlehttp/guzzle

* update phpstan/phpdoc-parser

* update psr/http-message
  • Loading branch information
danepowell authored May 3, 2023
1 parent 06fa9c8 commit e68b1ca
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 63 deletions.
121 changes: 59 additions & 62 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/Connector/ConnectorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public function testGetAuthenticatedRequest(): void

$response = Phony::mock(ResponseInterface::class);
$response->getBody->returns($stream->get());
$response->getHeader->with('content-type')->returns('application/json');
$response->getHeader->with('content-type')->returns(['application/json']);

$client = Phony::mock(ClientInterface::class);
$client->send->returns($response->get());
Expand Down

0 comments on commit e68b1ca

Please sign in to comment.