Skip to content

Commit

Permalink
Fix Utils::printSafe with bool true
Browse files Browse the repository at this point in the history
  • Loading branch information
mcg-web committed Feb 1, 2018
1 parent b1c1cea commit d167328
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utils/Utils.php
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ public static function printSafe($var)
return 'false';
}
if (true === $var) {
return 'false';
return 'true';
}
if (is_string($var)) {
return "\"$var\"";
Expand Down

0 comments on commit d167328

Please sign in to comment.