Skip to content

Commit

Permalink
Fix Style
Browse files Browse the repository at this point in the history
  • Loading branch information
Hectorhammett committed Dec 5, 2024
1 parent 3bbac24 commit 1a7523b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/HttpHandler/Guzzle6HttpHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Guzzle6HttpHandler
* @param ClientInterface $client
* @param null|LoggerInterface $logger
*/
public function __construct(ClientInterface $client, LoggerInterface $logger = null)
public function __construct(ClientInterface $client, ?LoggerInterface $logger = null)
{
$this->client = $client;
$this->logger = $logger;
Expand Down
2 changes: 1 addition & 1 deletion tests/Logging/LoggingTraitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function testRequestWithoutJwtShouldNotPrintAJwt()
public function testLogResponse()
{
$event = $this->getNewLogEvent();
$event->headers = ['Thisis' => "a header"];
$event->headers = ['Thisis' => 'a header'];
$this->loggerContainer->logResponseEvent($event);

$buffer = $this->getActualOutput();
Expand Down

0 comments on commit 1a7523b

Please sign in to comment.