Skip to content
This repository was archived by the owner on Apr 24, 2026. It is now read-only.

Commit ccb1009

Browse files
author
Gijs Nieuwenhuis
committed
Removed setting of default function parameter values
1 parent b2c0f97 commit ccb1009

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/FH/PostcodeAPI/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ private function get($path, array $queryParams = array())
104104
*/
105105
private function parseResponse(ResponseInterface $response)
106106
{
107-
$out = json_decode((string) $response->getBody(), false, 512);
107+
$out = json_decode((string) $response->getBody());
108108

109109
if (json_last_error() !== JSON_ERROR_NONE) {
110110
throw new CouldNotParseResponseException('Could not parse resonse', $response);

0 commit comments

Comments
 (0)