mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-28 21:18:46 +02:00
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 Identical extends BinaryOp
|
|
{
|
|
public function getOperatorSigil() : string {
|
|
return '===';
|
|
}
|
|
|
|
public function getType() : string {
|
|
return 'Expr_BinaryOp_Identical';
|
|
}
|
|
}
|