1
0
mirror of synced 2024-12-05 03:06:05 +03:00

#1350 - parameters should be an array by default

This commit is contained in:
Marco Pivetta 2015-03-31 22:02:48 +01:00
parent f6a1ea4859
commit 9a2afd1a9a

View File

@ -46,7 +46,7 @@ abstract class SQLFilter
*
* @var array
*/
private $parameters;
private $parameters = [];
/**
* Constructs the SQLFilter object.
@ -56,7 +56,6 @@ abstract class SQLFilter
final public function __construct(EntityManagerInterface $em)
{
$this->em = $em;
$this->parameters = array();
}
/**