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: | public function getOperatorSigil(): string { |
9: | return '|'; |
10: | } |
11: | |
12: | public function getType(): string { |
13: | return 'Expr_BinaryOp_BitwiseOr'; |
14: | } |
15: | } |
16: |