Commit 598503dc authored by Tiago Brito's avatar Tiago Brito

Fix boolean conversion with php 5.6

parent 907513f3
......@@ -788,7 +788,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