| 1 | <?php |
||
| 8 | abstract class SearchQueryFactoryBase implements SearchQueryFactoryInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @inheritdoc |
||
| 12 | */ |
||
| 13 | public function createFromConstraint( |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @inheritdoc |
||
| 22 | */ |
||
| 23 | public function createFromConstraints( |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param StringLiteral $constraint |
||
| 42 | * @param StringLiteral $offerId |
||
| 43 | * @return string |
||
| 44 | */ |
||
| 45 | abstract protected function createQueryString( |
||
| 49 | } |
||
| 50 |