|
1234567891011121314151617181920212223242526272829303132 |
- <?php
-
- namespace Lc\SovBundle\Doctrine;
-
- use Doctrine\ORM\QueryBuilder as DoctrineQueryBuilder;
-
- /**
- * class QueryBuilder.
- *
- * @author La clic !!!!
- */
- class QueryBuilder extends DoctrineQueryBuilder
- {
-
- public function andWhereParent($dqlId, $entityId):self
- {
- $this->andWhere($dqlId.'.parent = :entityId');
- $this->setParameter('entityId', $entityId);
- return $this;
- }
-
- public function andWhereParentIsNull($dqlId):self
- {
- $this->andWhere($dqlId.'.parent IS NULL');
- return $this;
- }
-
- /*public function andIsOnline(){
-
- }*/
-
- }
|