Commit 3e956e8d authored by Sergey Zhuravel's avatar Sergey Zhuravel

Revert CS changes

parent 3b6119c8
...@@ -2227,13 +2227,11 @@ abstract class AbstractPlatform ...@@ -2227,13 +2227,11 @@ abstract class AbstractPlatform
if (is_array($item)) { if (is_array($item)) {
foreach ($item as $k => $value) { foreach ($item as $k => $value) {
if (is_bool($value)) { if (is_bool($value)) {
$item[$k] = (int)$value; $item[$k] = (int) $value;
} }
} }
} else { } elseif (is_bool($item)) {
if (is_bool($item)) { $item = (int) $item;
$item = (int)$item;
}
} }
return $item; return $item;
......
...@@ -708,7 +708,6 @@ class PostgreSqlPlatform extends AbstractPlatform ...@@ -708,7 +708,6 @@ class PostgreSqlPlatform extends AbstractPlatform
return parent::convertFromBoolean($item); return parent::convertFromBoolean($item);
} }
/** /**
* {@inheritDoc} * {@inheritDoc}
*/ */
......
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