| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function generateQueryString(SearchCriterion $searchCriterion) |
||
| 19 | { |
||
| 20 | return sprintf( |
||
| 21 | '%s(%s%s%s)', |
||
| 22 | $this->getComparisonPolarity($searchCriterion->getComparison()), |
||
| 23 | addslashes($searchCriterion->getTarget()), |
||
| 24 | $this->getComparisonConjunction(), |
||
| 25 | $searchCriterion->getQuoteValue($searchCriterion->getValue()) |
||
|
|
|||
| 26 | ); |
||
| 55 |