1<?php 2 3declare(strict_types=1); 4 5namespace Antlr\Antlr4\Runtime\Atn\States; 6 7final class RuleStartState extends ATNState 8{ 9 /** @var RuleStopState|null */ 10 public $stopState; 11 12 /** @var bool */ 13 public $isLeftRecursiveRule = false; 14 15 public function getStateType() : int 16 { 17 return self::RULE_START; 18 } 19} 20