Skip to content

Commit bdf5351

Browse files
committed
print_r expects bool not int for second parameter.
Fixing typehint with the correct interface for decodeResponse
1 parent 6caced5 commit bdf5351

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

phpstan.neon

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ parameters:
55
# PHP 8.3
66
phpVersion: 80300
77

8-
level: 2
8+
level: 5
99

1010
paths:
1111
- src

src/Client.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,10 @@ protected function post(string $url, array $data, bool $authenticate = true)
4848

4949
/**
5050
* Returns the API response as a raw decoded object from JSON string
51-
* @param \GuzzleHttp\Psr7\Response $response
5251
* @return array
5352
* @throws \JsonException
5453
*/
55-
protected function decodeResponse(\GuzzleHttp\Psr7\Response $response): array
54+
protected function decodeResponse(\Psr\Http\Message\ResponseInterface $response): array
5655
{
5756
return json_decode($response->getBody(), true, 512, JSON_THROW_ON_ERROR);
5857
}

src/Trait/TerminalOutputHelper.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ trait TerminalOutputHelper
66
{
77
public function outputVar(mixed $value): void
88
{
9-
$this->out(print_r($value,1));
9+
$this->out(print_r($value, true));
1010
}
1111
}

0 commit comments

Comments
 (0)