| Total Complexity | 4 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class NotConditionBuilder implements ExpressionBuilderInterface |
||
| 19 | { |
||
| 20 | public function __construct(private QueryBuilderInterface $queryBuilder) |
||
| 21 | { |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @throws Exception|InvalidArgumentException|InvalidConfigException|NotSupportedException |
||
| 26 | */ |
||
| 27 | public function build(NotConditionInterface $expression, array &$params = []): string |
||
| 38 | } |
||
| 39 | |||
| 40 | protected function getNegationOperator(): string |
||
| 43 | } |
||
| 44 | } |
||
| 45 |