#1350 - parameters
should be an array
by default
This commit is contained in:
parent
f6a1ea4859
commit
9a2afd1a9a
1 changed files with 1 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue