1
0
mirror of https://github.com/phabelio/PHP-Parser.git synced 2024-12-14 10:08:36 +01:00
php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php
2018-01-13 16:08:26 +01:00

13 lines
236 B
PHP

<?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';
}
}