1: | <?php declare(strict_types=1); |
2: | |
3: | namespace PhpParser\Node\Expr\BinaryOp; |
4: | |
5: | use PhpParser\Node\Expr\BinaryOp; |
6: | |
7: | class BitwiseOr extends BinaryOp |
8: | { |
9: | public function getOperatorSigil() : string { |
10: | return '|'; |
11: | } |
12: | |
13: | public function getType() : string { |
14: | return 'Expr_BinaryOp_BitwiseOr'; |
15: | } |
16: | } |
17: |