Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | public function filterWhereClause( |
||
32 | $rootAlias, |
||
33 | $relationsAndFieldName, |
||
34 | $filterParameter, |
||
35 | $strategy, |
||
36 | $value |
||
37 | ): string { |
||
38 | $alias = $rootAlias; |
||
39 | $field = $relationsAndFieldName[0]; |
||
40 | |||
41 | return TypeFactory::createTypeHandler($this->fieldType) |
||
42 | ->filterWhereClause($alias, $field, $filterParameter, $strategy, $value) |
||
43 | ; |
||
46 |