| Total Complexity | 2 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class OrLogic extends AbstractOperation |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var QueryInterface |
||
| 15 | */ |
||
| 16 | private $functionOne; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var QueryInterface |
||
| 20 | */ |
||
| 21 | private $functionTwo; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param RethinkInterface $rethink |
||
| 25 | * @param MessageInterface $message |
||
| 26 | * @param QueryInterface $functionOne |
||
| 27 | * @param QueryInterface $functionTwo |
||
| 28 | */ |
||
| 29 | public function __construct( |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @inheritdoc |
||
| 45 | */ |
||
| 46 | public function toArray(): array |
||
| 58 |