mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-12 00:59:49 +01:00
12 lines
214 B
PHP
12 lines
214 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node\Expr\BinaryOp;
|
|
|
|
use PhpParser\Node\Expr\BinaryOp;
|
|
|
|
class Div extends BinaryOp
|
|
{
|
|
public function getOperatorSigil() : string {
|
|
return '/';
|
|
}
|
|
} |