No Description

BitwiseAnd.php 317B

1234567891011121314151617
  1. <?php declare(strict_types=1);
  2. namespace PhpParser\Node\Expr\BinaryOp;
  3. use PhpParser\Node\Expr\BinaryOp;
  4. class BitwiseAnd extends BinaryOp
  5. {
  6. public function getOperatorSigil() : string {
  7. return '&';
  8. }
  9. public function getType() : string {
  10. return 'Expr_BinaryOp_BitwiseAnd';
  11. }
  12. }