Removing var_dump

This commit is contained in:
Sergiotarxz 2023-06-15 02:58:45 +02:00
parent 4756e9685f
commit c9cb8fe710
1 changed files with 0 additions and 1 deletions

View File

@ -31,6 +31,5 @@ function transform(string $socketLocation, string $inputFile, string $outputFile
$json = "";
socket_recv($socket, $json, $json_len, MSG_WAITALL);
$json = json_decode($json, true);
var_dump($json);
return $json;
}