Skip to content

Commit 0fce22f

Browse files
committed
minor #16780 CS: remove unneeded parentheses around control statements (keradus)
This PR was merged into the 2.3 branch. Discussion ---------- CS: remove unneeded parentheses around control statements | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | ? | Fixed tickets | N/A | License | MIT | Doc PR | N/A Commits ------- 45d250d CS: remove unneeded parentheses around control statements
2 parents 9d7eaa7 + f123126 commit 0fce22f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Form/ChoiceList/ORMQueryBuilderLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function getEntities()
7676
*/
7777
public function getEntitiesByIds($identifier, array $values)
7878
{
79-
$qb = clone ($this->queryBuilder);
79+
$qb = clone $this->queryBuilder;
8080
$alias = current($qb->getRootAliases());
8181
$parameter = 'ORMQueryBuilderLoader_getEntitiesByIds_'.$identifier;
8282
$where = $qb->expr()->in($alias.'.'.$identifier, ':'.$parameter);

0 commit comments

Comments
 (0)