[BridgeAbstract] Fix typos

This commit is contained in:
logmanoriginal 2016-09-17 20:24:59 +02:00
parent 3438b96197
commit ac3a2b8e6e
1 changed files with 3 additions and 3 deletions

View File

@ -377,12 +377,12 @@ abstract class BridgeAbstract implements BridgeInterface {
//TODO
case stristr($header, 'brotli'):
//TODO
returnServerError($header . '=> Not implemented yet');
$this->returnServerError($header . '=> Not implemented yet');
break;
case stristr($header, 'identity'):
break;
default:
returnServerError($header . '=> Unknown compression');
$this->returnServerError($header . '=> Unknown compression');
}
}
}