mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
13 lines
236 B
PHP
13 lines
236 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node\Expr\AssignOp;
|
|
|
|
use PhpParser\Node\Expr\AssignOp;
|
|
|
|
class ShiftRight extends AssignOp
|
|
{
|
|
public function getType() : string {
|
|
return 'Expr_AssignOp_ShiftRight';
|
|
}
|
|
}
|