選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

25 行
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. }