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

Assigned default value to array

* For strict configurations of PHP, we were accessing to a non-array element
This commit is contained in:
mmoreram 2015-03-26 23:50:54 +01:00 committed by Marco Pivetta
parent 82230cc427
commit f6a1ea4859

View File

@ -56,6 +56,7 @@ abstract class SQLFilter
final public function __construct(EntityManagerInterface $em)
{
$this->em = $em;
$this->parameters = array();
}
/**