| 1 | <?php |
||
| 8 | abstract class AbstractExecutor implements ExecutorInterface |
||
| 9 | { |
||
| 10 | protected $supportedStepTypes = array(); |
||
| 11 | |||
| 12 | 20 | public function supportedTypes() |
|
| 16 | |||
| 17 | /** |
||
| 18 | * IT IS MANDATORY TO OVERRIDE THIS IN SUBCLASSES |
||
| 19 | * @param MigrationStep $step |
||
| 20 | * @return mixed |
||
| 21 | * @throws \Exception |
||
| 22 | 12 | */ |
|
| 23 | public function execute(MigrationStep $step) |
||
| 29 | |||
| 30 | public function generateTemplate($identifier) |
||
| 34 | } |
||
| 35 |