| 1 | <?php |
||
| 10 | class BitwiseOrTest extends AbstractBinaryOp |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @return array |
||
| 14 | */ |
||
| 15 | public function getDataProvider() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Tests {var} |= {expr} |
||
| 33 | * |
||
| 34 | * @dataProvider getDataProvider |
||
| 35 | */ |
||
| 36 | public function testSimpleSuccessCompile($a, $b, $c) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param Node\Scalar $a |
||
| 51 | * @param Node\Scalar $b |
||
| 52 | * @return Node\Expr\AssignOp\BitwiseOr |
||
| 53 | */ |
||
| 54 | protected function buildExpression($a, $b) |
||
| 58 | } |
||
| 59 |