| 1 | <?php |
||
| 16 | class Step implements StepInterface |
||
| 17 | { |
||
| 18 | protected $number; |
||
| 19 | protected $name; |
||
| 20 | protected $action; |
||
| 21 | protected $label; |
||
| 22 | protected $onchangeClear; |
||
| 23 | protected $dependencies; |
||
| 24 | protected $managerName; |
||
| 25 | |||
| 26 | public function __construct( |
||
| 43 | |||
| 44 | public static function createFromData(array $data): self |
||
| 56 | |||
| 57 | /** |
||
| 58 | * {@inheritdoc} |
||
| 59 | */ |
||
| 60 | public function getNumber(): int |
||
| 64 | |||
| 65 | /** |
||
| 66 | * {@inheritdoc} |
||
| 67 | */ |
||
| 68 | public function getName(): string |
||
| 72 | |||
| 73 | /** |
||
| 74 | * {@inheritdoc} |
||
| 75 | */ |
||
| 76 | public function getAction(): string |
||
| 80 | |||
| 81 | /** |
||
| 82 | * {@inheritdoc} |
||
| 83 | */ |
||
| 84 | public function getLabel(): string |
||
| 88 | |||
| 89 | /** |
||
| 90 | * {@inheritdoc} |
||
| 91 | */ |
||
| 92 | public function getOnchangeClear(): array |
||
| 96 | |||
| 97 | /** |
||
| 98 | * {@inheritdoc} |
||
| 99 | */ |
||
| 100 | public function getDependencies(): array |
||
| 104 | |||
| 105 | /** |
||
| 106 | * {@inheritdoc} |
||
| 107 | */ |
||
| 108 | public function getManagerName(): string |
||
| 112 | } |
||
| 113 |