| 1 | <?php  | 
            ||
| 10 | class MinusTest extends AbstractBinaryOp  | 
            ||
| 11 | { | 
            ||
| 12 | /**  | 
            ||
| 13 | * @param $a  | 
            ||
| 14 | * @param $b  | 
            ||
| 15 | * @return int  | 
            ||
| 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\BinaryOp\Minus  | 
            ||
| 38 | */  | 
            ||
| 39 | protected function buildExpression($a, $b)  | 
            ||
| 43 | }  | 
            ||
| 44 |