This repository was archived by the owner on Apr 10, 2021. It is now read-only.

Description
in src/Api.php, line 327
var_dump()
should only be used for debug, and not committed to the source code repository.
$res = false;
} else {
if ($this->debug) {
$meta = stream_get_meta_data($fp);
$this->error(
'Var dump of HTTP headers' . var_dump($meta['wrapper_data'])
);
}
$res = stream_get_contents($fp);
}
Posted from SensioLabsInsight