3cb8e7e0d16680ed69aadf22d4c45a2749fa375e
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Expr / BinaryOp / Smaller.php
1 <?php declare(strict_types=1);
2
3 namespace PhpParser\Node\Expr\BinaryOp;
4
5 use PhpParser\Node\Expr\BinaryOp;
6
7 class Smaller extends BinaryOp
8 {
9     public function getOperatorSigil() : string {
10         return '<';
11     }
12     
13     public function getType() : string {
14         return 'Expr_BinaryOp_Smaller';
15     }
16 }