1 | <?php |
||
19 | abstract class AbstractORMCriteriaBuilder implements |
||
20 | CriteriaBuilderInterface |
||
21 | { |
||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function supportsSearchingContext( |
||
30 | |||
31 | /** |
||
32 | * Will do JOIN only if there is no such join already. |
||
33 | * For any other more advanced join strategies please use unique aliases. |
||
34 | * Remember: for performance reasons you should keep number of joins as low as possible |
||
35 | * Example usage: $this->join($qb, 'p.house', 'h', Join::LEFT_JOIN). |
||
36 | * |
||
37 | * @param QueryBuilder $queryBuilder |
||
38 | * @param string $join |
||
39 | * @param string $alias |
||
40 | * @param string $joinType |
||
41 | * |
||
42 | * @return QueryBuilder |
||
43 | */ |
||
44 | protected function join(QueryBuilder $queryBuilder, $join, $alias, $joinType) |
||
61 | |||
62 | /** |
||
63 | * @param QueryBuilder $queryBuilder |
||
64 | * @param array $joinParts |
||
65 | * @param string $alias |
||
66 | * @param string $join |
||
67 | * @param string $joinType |
||
68 | * |
||
69 | * @return QueryBuilder|static |
||
70 | */ |
||
71 | protected function filterExistingJoins( |
||
93 | } |
||
94 |