xref: /plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/States/StarBlockStartState.php (revision 37748cd8654635afbeca80942126742f0f4cc346)
1<?php
2
3declare(strict_types=1);
4
5namespace Antlr\Antlr4\Runtime\Atn\States;
6
7final class StarBlockStartState extends BlockStartState
8{
9    public function getStateType() : int
10    {
11        return self::STAR_BLOCK_START;
12    }
13}
14