您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

23 行
480B

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