Skip to content

Commit

Permalink
[doctrineGH-2624] CS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed Feb 28, 2021
1 parent 49d2a7a commit 37cb72f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/Doctrine/Tests/ORM/Functional/SQLFilterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
use function in_array;
use function serialize;

use function count;

/**
* Tests SQLFilter functionality.
*
Expand Down Expand Up @@ -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.
}
}

Expand Down

0 comments on commit 37cb72f

Please sign in to comment.