Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Expr / AssignOp / BitwiseAnd.php
1 <?php declare(strict_types=1);
2
3 namespace PhpParser\Node\Expr\AssignOp;
4
5 use PhpParser\Node\Expr\AssignOp;
6
7 class BitwiseAnd extends AssignOp
8 {
9     public function getType() : string {
10         return 'Expr_AssignOp_BitwiseAnd';
11     }
12 }