| 1 | <?php |
||
| 17 | class StepStub extends Step |
||
| 18 | { |
||
| 19 | public static function createStub(array $data = []) |
||
| 20 | { |
||
| 21 | $data = array_merge([ |
||
| 22 | 'number' => 0, |
||
| 23 | 'name' => 'test_step', |
||
| 24 | 'label' => 'Test step', |
||
| 25 | 'action' => ConcreteAbstractActionStub::class, |
||
| 26 | 'manager_name' => 'test_manager', |
||
| 27 | 'onchange_clear' => [], // On cache clear |
||
| 28 | 'dependencies' => [] // Dependencies |
||
| 29 | ], $data); |
||
| 30 | |||
| 31 | return static::createFromData($data); |
||
| 32 | } |
||
| 33 | } |
||
| 34 |