small cleanup

This commit is contained in:
kremsy 2014-02-15 14:08:39 +01:00 committed by Steffen Schröder
parent 8dc735df42
commit ac16579d7a

View File

@ -76,15 +76,16 @@ class AsynchronousFileReader {
private function parseResult($streamBuffer) { private function parseResult($streamBuffer) {
$resultArray = explode(PHP_EOL . PHP_EOL, $streamBuffer, 2); $resultArray = explode(PHP_EOL . PHP_EOL, $streamBuffer, 2);
if (count($resultArray) < 2) { if (count($resultArray) < 2) {
$result = self::INVALID_RESULT_ERROR; return self::INVALID_RESULT_ERROR;
} else {
$header = $this->parseHeader($resultArray[0]);
if (isset($header["transfer-encoding"])) {
$result = $this->decode_chunked($resultArray[1]);
} else {
$result = $resultArray[1];
}
} }
$header = $this->parseHeader($resultArray[0]);
if (isset($header["transfer-encoding"])) {
$result = $this->decode_chunked($resultArray[1]);
} else {
$result = $resultArray[1];
}
return $result; return $result;
} }
@ -107,6 +108,7 @@ class AsynchronousFileReader {
/** /**
* Parse the Header * Parse the Header
*
* @param $header * @param $header
* @return array * @return array
*/ */