| 1 | <?php |
||
| 27 | class SearchBinaryOperator implements ISearchBinaryOperator { |
||
| 28 | /** @var string */ |
||
| 29 | private $type; |
||
| 30 | /** @var ISearchOperator[] */ |
||
| 31 | private $arguments; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * SearchBinaryOperator constructor. |
||
| 35 | * |
||
| 36 | * @param string $type |
||
| 37 | * @param ISearchOperator[] $arguments |
||
| 38 | */ |
||
| 39 | public function __construct($type, array $arguments) { |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return string |
||
| 46 | */ |
||
| 47 | public function getType() { |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return ISearchOperator[] |
||
| 53 | */ |
||
| 54 | public function getArguments() { |
||
| 57 | } |
||
| 58 |