Commit 2e989780 authored by Davi Koscianski Vidal's avatar Davi Koscianski Vidal Committed by lucasvanlierop

Complying with Doctrine PSR exceptions

parent b35b6824
......@@ -692,7 +692,7 @@ class PostgreSqlPlatform extends AbstractPlatform
*/
public function convertBoolToSqlLiteral($item)
{
if (! $this->useBooleanTrueFalseStrings) {
if ( ! $this->useBooleanTrueFalseStrings) {
return parent::convertBoolToSqlLiteral($item);
}
......@@ -716,7 +716,7 @@ class PostgreSqlPlatform extends AbstractPlatform
*/
public function convertBoolToDbValue($item)
{
if (! $this->useBooleanTrueFalseStrings) {
if ( ! $this->useBooleanTrueFalseStrings) {
return parent::convertBoolToDbValue($item);
}
......
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