Skip to content

Commit cd3eadc

Browse files
authored
Merge pull request #190 from abhilashpujari/php7-warning-fix
Fixed php7 'Parameter must be an array or an object that implements C…
2 parents 329b9c5 + 65c0e90 commit cd3eadc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/QueryFilter/QueryMessage.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ class QueryMessage
5656
*/
5757
public function __construct()
5858
{
59-
$projection = array();
60-
$whereClause = array();
59+
$this->projection = array();
60+
$this->whereClause = array();
6161
}
6262

6363
/**

0 commit comments

Comments
 (0)