| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 2 |
| 1 | <?php |
||
| 20 | 185 | public function toString(Escaper $escaper) |
|
| 21 | { |
||
| 22 | 185 | if($this->isEmpty()) |
|
| 23 | 185 | { |
|
| 24 | 11 | return ''; |
|
| 25 | } |
||
| 26 | |||
| 27 | 174 | return sprintf( |
|
| 28 | 174 | '%s %s %s', |
|
| 29 | 174 | $this->generateFieldOperand($this->leftOperand), |
|
| 30 | 174 | $this->getConditionOperator(), |
|
| 31 | 174 | $this->generateRightOperand($escaper) |
|
| 32 | 174 | ); |
|
| 33 | } |
||
| 34 | |||
| 71 |