| 1 | <?php |
||
| 15 | abstract class AbstractStep implements StepInterface |
||
| 16 | { |
||
| 17 | /** @var array Current application configuration.*/ |
||
| 18 | protected $configuration; |
||
| 19 | |||
| 20 | |||
| 21 | /** |
||
| 22 | * @param array $configuration Current application configuration. |
||
| 23 | */ |
||
| 24 | 27 | public function __construct(array $configuration) |
|
| 28 | } |
||
| 29 |