converting $foo == null / $foo == false to !$foo

This commit is contained in:
dogmatic69 2012-09-14 18:26:30 +01:00
parent 1fe791353f
commit cf8fccae96
30 changed files with 50 additions and 52 deletions

View file

@ -361,7 +361,7 @@ class HttpResponse implements ArrayAccess {
$escape[] = chr(127);
}
if ($hex == false) {
if (!$hex) {
return $escape;
}
foreach ($escape as $key => $char) {