| 1 | <?php |
||
| 29 | abstract class SimpleMigrationStep implements IMigrationStep { |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param IOutput $output |
||
| 33 | * @param \Closure $schemaClosure The `\Closure` returns a `Schema` |
||
| 34 | * @param array $options |
||
| 35 | * @since 13.0.0 |
||
| 36 | */ |
||
| 37 | public function preSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param IOutput $output |
||
| 42 | * @param \Closure $schemaClosure The `\Closure` returns a `Schema` |
||
| 43 | * @param array $options |
||
| 44 | * @return null|Schema |
||
| 45 | * @since 13.0.0 |
||
| 46 | */ |
||
| 47 | public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @param IOutput $output |
||
| 53 | * @param \Closure $schemaClosure The `\Closure` returns a `Schema` |
||
| 54 | * @param array $options |
||
| 55 | * @since 13.0.0 |
||
| 56 | */ |
||
| 57 | public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { |
||
| 59 | } |
||
| 60 |