Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
23 | trait WhereTrait |
||
24 | { |
||
25 | use ConditionTrait; |
||
26 | |||
27 | /** |
||
28 | * Build WHERE part of the query |
||
29 | * |
||
30 | * @param array|StructuredQuery $condition Condition to be built |
||
31 | * @param MySqlQueryBuilderState $state Query builder state |
||
32 | * @return string |
||
33 | */ |
||
34 | 4 | protected function buildWhere($condition, MySqlQueryBuilderState $state) |
|
37 | } |
||
38 | } |