AlexanderHH
Results
2
comments of
AlexanderHH
You have small bug that occours in windows machines: `$explode = explode(PHP_EOL, $response->getBody());` Please replace it direct with "\n" to avoid splitting problems.
I also prefer to use regex instead of splitting and in some case joining of data like in the `parseResponse()` method. I changed it to: ``` $lines = explode("\n", $response->getBody());...