| 1 | <?php  | 
            ||
| 14 | abstract class AbstractStep implements StepInterface  | 
            ||
| 15 | { | 
            ||
| 16 | /**  | 
            ||
| 17 | * @var Builder  | 
            ||
| 18 | */  | 
            ||
| 19 | protected $builder;  | 
            ||
| 20 | /**  | 
            ||
| 21 | * @var Config  | 
            ||
| 22 | */  | 
            ||
| 23 | protected $config;  | 
            ||
| 24 | /**  | 
            ||
| 25 | * @var bool  | 
            ||
| 26 | */  | 
            ||
| 27 | protected $process = false;  | 
            ||
| 28 | |||
| 29 | /**  | 
            ||
| 30 |      * {@inheritdoc} | 
            ||
| 31 | */  | 
            ||
| 32 | public function __construct(Builder $builder)  | 
            ||
| 37 | |||
| 38 | /**  | 
            ||
| 39 |      * {@inheritdoc} | 
            ||
| 40 | */  | 
            ||
| 41 | public function init($options)  | 
            ||
| 45 | |||
| 46 | /**  | 
            ||
| 47 |      * {@inheritdoc} | 
            ||
| 48 | */  | 
            ||
| 49 | public function runProcess()  | 
            ||
| 55 | |||
| 56 | /**  | 
            ||
| 57 |      * {@inheritdoc} | 
            ||
| 58 | */  | 
            ||
| 59 | abstract public function process();  | 
            ||
| 60 | }  | 
            ||
| 61 |