Commit 5cbe4155 authored by Tiago Brito's avatar Tiago Brito Committed by Steve Müller

Update PostgreSqlPlatform.php

Add new line after an IF statement to be consistent with the coding standard
parent b1cc410d
......@@ -808,6 +808,7 @@ class PostgreSqlPlatform extends AbstractPlatform
if (null === $boolean) {
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