Commit 59a5f5c0 authored by Davi Koscianski Vidal's avatar Davi Koscianski Vidal Committed by lucasvanlierop

Fixing indentation

parent 3de109f2
...@@ -48,23 +48,23 @@ class PostgreSqlPlatform extends AbstractPlatform ...@@ -48,23 +48,23 @@ class PostgreSqlPlatform extends AbstractPlatform
* @var array PostgreSQL booleans literals * @var array PostgreSQL booleans literals
*/ */
private $booleanLiterals = array( private $booleanLiterals = array(
'true' => array( 'true' => array(
't', 't',
'true', 'true',
'y', 'y',
'yes', 'yes',
'on', 'on',
'1' '1'
), ),
'false' => array( 'false' => array(
'f', 'f',
'false', 'false',
'n', 'n',
'no', 'no',
'off', 'off',
'0' '0'
) )
); );
/** /**
* PostgreSQL has different behavior with some drivers * PostgreSQL has different behavior with some drivers
......
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