Skip to content

Commit 944cceb

Browse files
committed
Fix Utils::printSafe with bool true
1 parent ccecc3c commit 944cceb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Utils/Utils.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ public static function printSafe($var)
336336
return 'false';
337337
}
338338
if (true === $var) {
339-
return 'false';
339+
return 'true';
340340
}
341341
if (is_string($var)) {
342342
return "\"$var\"";

0 commit comments

Comments
 (0)