1<?php
2
3declare(strict_types=1);
4
5namespace Antlr\Antlr4\Runtime\Atn\States;
6
7final class BlockEndState extends ATNState
8{
9    /** @var BlockStartState|null */
10    public $startState;
11
12    public function getStateType() : int
13    {
14        return self::BLOCK_END;
15    }
16}
17