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