Commit 11b73052 authored by Tiago Brito's avatar Tiago Brito Committed by Steve Müller

Fix boolean conversion with php 5.6

parent 437f4160
......@@ -806,7 +806,7 @@ class PostgreSqlPlatform extends AbstractPlatform
$item,
function ($boolean) {
if (null === $boolean) {
return 'NULL';
return null;
}
return true === $boolean ? 'true' : 'false';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment