1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- declare(strict_types=1);
- namespace OCP\Migration;
- use Closure;
- use OCP\DB\ISchemaWrapper;
- abstract class SimpleMigrationStep implements IMigrationStep {
-
- public function name(): string {
- return '';
- }
-
- public function description(): string {
- return '';
- }
-
- public function preSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) {
- }
-
- public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) {
- return null;
- }
-
- public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) {
- }
- }
|