Commit 4ebdb8c6 authored by Tiago Brito's avatar Tiago Brito

Update PostgreSqlPlatform.php

Add new line after an IF statement to be consistent with the coding standard
parent 43d13fcf
...@@ -789,6 +789,7 @@ class PostgreSqlPlatform extends AbstractPlatform ...@@ -789,6 +789,7 @@ class PostgreSqlPlatform extends AbstractPlatform
if (null === $boolean) { if (null === $boolean) {
return 'NULL'; return 'NULL';
} }
return true === $boolean ? 'true' : 'false'; 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