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