Skip to content

Commit b9f01b5

Browse files
committed
Fix CS
1 parent 68368b4 commit b9f01b5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: lib/Doctrine/ORM/TaxonRepository.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ public function countTaxonChildren(TaxonInterface $parent): int
1616
->where('o.parent = :parent')
1717
->setParameter('parent', $parent->getId())
1818
->getQuery()
19-
->getSingleScalarResult()
20-
;
19+
->getSingleScalarResult();
2120
}
2221
}

0 commit comments

Comments
 (0)