You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 line
489B

  1. <?php
  2. namespace Lc\SovBundle\Repository;
  3. use Lc\SovBundle\Doctrine\EntityInterface;
  4. trait TreeRepositoryQueryTrait
  5. {
  6. public function filterIsParent()
  7. {
  8. return $this->andWhere('.parent is NULL');
  9. }
  10. public function filterIsChildren()
  11. {
  12. return $this->andWhere('.parent is NOT NULL');
  13. }
  14. public function filterByParent(EntityInterface $parent)
  15. {
  16. return $this->andWhere('.parent = :parent')->setParameter('parent', $parent);
  17. }
  18. }