mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-25 03:28:45 +02:00
We were on v3 that is no longer maintained and compatibility is annonced for PHP 7.2. v4 is active and supports PHP up to 8.0 No problem to update as this is only used in the config editor (\Combodo\iTop\Config\Validator\iTopConfigAstValidator)
17 lines
317 B
PHP
17 lines
317 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node\Expr\BinaryOp;
|
|
|
|
use PhpParser\Node\Expr\BinaryOp;
|
|
|
|
class BitwiseAnd extends BinaryOp
|
|
{
|
|
public function getOperatorSigil() : string {
|
|
return '&';
|
|
}
|
|
|
|
public function getType() : string {
|
|
return 'Expr_BinaryOp_BitwiseAnd';
|
|
}
|
|
}
|