| 1 | <?php |
||
| 21 | abstract class BinaryConstraintOperator extends Specification |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var SelectorInterface |
||
| 25 | */ |
||
| 26 | protected $left; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var SelectorInterface |
||
| 30 | */ |
||
| 31 | protected $right; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param SelectorInterface $left |
||
| 35 | * @param SelectorInterface $right |
||
| 36 | */ |
||
| 37 | public function __construct(SelectorInterface $left, SelectorInterface $right) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return \Cubiche\Core\Selector\SelectorInterface |
||
| 45 | */ |
||
| 46 | public function left() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return \Cubiche\Core\Selector\SelectorInterface |
||
| 53 | */ |
||
| 54 | public function right() |
||
| 58 | } |
||
| 59 |