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

Revert CS changes

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