Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
1 | <?php |
||
42 | 33 | protected function buildPartCondition(Condition $condition, Escaper $escaper) |
|
43 | { |
||
44 | 33 | $partCondition = $condition->toString($escaper); |
|
45 | |||
46 | 33 | if($condition instanceof CompositeCondition) |
|
47 | 33 | { |
|
48 | 23 | $partCondition = sprintf('(%s)', $partCondition); |
|
49 | 23 | } |
|
50 | |||
51 | 33 | return $partCondition; |
|
52 | } |
||
53 | |||
56 |