Greater.php 311 B

12345678910111213141516
  1. <?php declare(strict_types=1);
  2. namespace PhpParser\Node\Expr\BinaryOp;
  3. use PhpParser\Node\Expr\BinaryOp;
  4. class Greater extends BinaryOp
  5. {
  6. public function getOperatorSigil() : string {
  7. return '>';
  8. }
  9. public function getType() : string {
  10. return 'Expr_BinaryOp_Greater';
  11. }
  12. }