Commit dbb0774d authored by František Bereň's avatar František Bereň Committed by lucasvanlierop

Update AbstractPlatform.php

parent fbba6d1e
......@@ -2592,7 +2592,7 @@ abstract class AbstractPlatform
*/
public function convertFromBoolean($item)
{
return (null === $item) ? null : (bool) $item;
return null === $item ?: (bool) $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