| 1 | <?php  | 
            ||
| 18 | class Substep extends AbstractFormDefinition  | 
            ||
| 19 | { | 
            ||
| 20 | /**  | 
            ||
| 21 | * @var string  | 
            ||
| 22 | * @validate NotEmpty  | 
            ||
| 23 | */  | 
            ||
| 24 | protected $identifier;  | 
            ||
| 25 | |||
| 26 | /**  | 
            ||
| 27 | * @param string $identifier  | 
            ||
| 28 | */  | 
            ||
| 29 | public function __construct($identifier)  | 
            ||
| 33 | |||
| 34 | /**  | 
            ||
| 35 | * @return string  | 
            ||
| 36 | */  | 
            ||
| 37 | public function getIdentifier()  | 
            ||
| 41 | }  | 
            ||
| 42 |