diff --git a/tests/Doctrine/Tests/ORM/Functional/SQLFilterTest.php b/tests/Doctrine/Tests/ORM/Functional/SQLFilterTest.php index 995cd328328..3e6a98760e6 100644 --- a/tests/Doctrine/Tests/ORM/Functional/SQLFilterTest.php +++ b/tests/Doctrine/Tests/ORM/Functional/SQLFilterTest.php @@ -35,6 +35,8 @@ use function in_array; use function serialize; +use function count; + /** * Tests SQLFilter functionality. * @@ -1192,7 +1194,7 @@ public function addFilterConstraint(ClassMetadata $targetEntity, $targetTableAli return ''; } - return $targetTableAlias.'.country IN (' . $this->getParameterList('country') . ')'; // getParam uses connection to quote the value. + return $targetTableAlias . '.country IN (' . $this->getParameterList('country') . ')'; // getParam uses connection to quote the value. } }