| Conditions | 3 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public static function fromArrayDefinition(string $operator, array $operands): self |
||
| 36 | { |
||
| 37 | if (!isset($operands[0]) || !$operands[0] instanceof QueryInterface) { |
||
| 38 | throw new InvalidArgumentException('Sub query for EXISTS operator must be a Query object.'); |
||
| 39 | } |
||
| 40 | |||
| 41 | return new self($operator, $operands[0]); |
||
| 42 | } |
||
| 44 |