| 1 | <?php  | 
            ||
| 19 | class SubstepDefinition extends AbstractFormDefinition  | 
            ||
| 20 | { | 
            ||
| 21 | /**  | 
            ||
| 22 | * @var string  | 
            ||
| 23 | * @validate NotEmpty  | 
            ||
| 24 | */  | 
            ||
| 25 | protected $substep;  | 
            ||
| 26 | |||
| 27 | /**  | 
            ||
| 28 | * @var \Romm\Formz\Form\Definition\Step\Step\Substep\NextSubsteps  | 
            ||
| 29 | */  | 
            ||
| 30 | protected $next;  | 
            ||
| 31 | |||
| 32 | /**  | 
            ||
| 33 | * @return Substep  | 
            ||
| 34 | */  | 
            ||
| 35 | public function getSubstep()  | 
            ||
| 44 | |||
| 45 | /**  | 
            ||
| 46 | * @return bool  | 
            ||
| 47 | */  | 
            ||
| 48 | public function hasNextSubsteps()  | 
            ||
| 52 | |||
| 53 | /**  | 
            ||
| 54 | * @return NextSubsteps  | 
            ||
| 55 | * @throws EntryNotFoundException  | 
            ||
| 56 | */  | 
            ||
| 57 | public function getNextSteps()  | 
            ||
| 65 | }  | 
            ||
| 66 |