| Total Complexity | 6 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class Version0910Date20221109096049 extends SimpleMigrationStep { |
||
| 15 | |||
| 16 | private $connection; |
||
| 17 | |||
| 18 | public function __construct(IDBConnection $connection) { |
||
| 19 | $this->connection = $connection; |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param IOutput $output |
||
| 24 | * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` |
||
| 25 | * @param array $options |
||
| 26 | */ |
||
| 27 | public function preSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void { |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param IOutput $output |
||
| 32 | * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` |
||
| 33 | * @param array $options |
||
| 34 | * @return null|ISchemaWrapper |
||
| 35 | */ |
||
| 36 | public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper { |
||
| 47 | } |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param IOutput $output |
||
| 51 | * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` |
||
| 52 | * @param array $options |
||
| 53 | */ |
||
| 54 | public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void { |
||
| 55 | } |
||
| 56 | |||
| 58 |