From c693db34cb26374d584d1cb01c4deaa63a44d984 Mon Sep 17 00:00:00 2001 From: Omkar_Waje <124696368+omkarwaje2504@users.noreply.github.com> Date: Thu, 9 Jan 2025 19:20:25 +0530 Subject: [PATCH] Update PHPClient.php Print statements also get returned in the response which caused the API to fail. --- src/PHPClient.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/PHPClient.php b/src/PHPClient.php index 72453e7..5c92bda 100644 --- a/src/PHPClient.php +++ b/src/PHPClient.php @@ -105,7 +105,6 @@ private function handleLambdaResponseRender(string $response): RenderMediaOnLamb throw new Exception($response['message']); } $classResponse->type = $response['type']; - print_r(json_encode($response)); $classResponse->renderId = $response['renderId']; $classResponse->bucketName = $response['bucketName']; return $classResponse;