mirror of
https://github.com/nikic/PHP-Parser.git
synced 2025-06-19 06:24:53 +02:00
12 lines
228 B
PHP
12 lines
228 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node\Expr\AssignOp;
|
|
|
|
use PhpParser\Node\Expr\AssignOp;
|
|
|
|
class BitwiseAnd extends AssignOp
|
|
{
|
|
function getType() : string {
|
|
return 'Expr_AssignOp_BitwiseAnd';
|
|
}
|
|
} |