1 | <?php |
||
10 | class ShiftLeftTest extends AbstractBinaryOp |
||
11 | { |
||
12 | /** |
||
13 | * @param $a |
||
14 | * @param $b |
||
15 | * @return mixed |
||
16 | */ |
||
17 | protected function process($a, $b) |
||
21 | |||
22 | /** |
||
23 | * @return array |
||
24 | */ |
||
25 | protected function getSupportedTypes() |
||
33 | |||
34 | /** |
||
35 | * @param Node\Scalar $a |
||
36 | * @param Node\Scalar $b |
||
37 | * @return Node\Expr\AssignOp\ShiftLeft |
||
38 | */ |
||
39 | protected function buildExpression($a, $b) |
||
43 | } |
||
44 |