1
0
Fork 0
mirror of synced 2025-03-30 11:40:15 +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 * @var array
*/ */
private $parameters; private $parameters = [];
/** /**
* Constructs the SQLFilter object. * Constructs the SQLFilter object.
@ -56,7 +56,6 @@ abstract class SQLFilter
final public function __construct(EntityManagerInterface $em) final public function __construct(EntityManagerInterface $em)
{ {
$this->em = $em; $this->em = $em;
$this->parameters = array();
} }
/** /**