| 1 | <?php  | 
            ||
| 10 | class LogicalOrTest extends AbstractBinaryOp  | 
            ||
| 11 | { | 
            ||
| 12 | /**  | 
            ||
| 13 | * @param $a  | 
            ||
| 14 | * @param $b  | 
            ||
| 15 | * @return bool  | 
            ||
| 16 | */  | 
            ||
| 17 | protected function process($a, $b)  | 
            ||
| 21 | |||
| 22 | /**  | 
            ||
| 23 | * @return array  | 
            ||
| 24 | */  | 
            ||
| 25 | protected function getSupportedTypes()  | 
            ||
| 35 | |||
| 36 | /**  | 
            ||
| 37 | * @param Node\Scalar $a  | 
            ||
| 38 | * @param Node\Scalar $b  | 
            ||
| 39 | * @return Node\Expr\BinaryOp\LogicalOr  | 
            ||
| 40 | */  | 
            ||
| 41 | protected function buildExpression($a, $b)  | 
            ||
| 45 | }  | 
            ||
| 46 |