Browse Source

Merge pull request #23479 from nextcloud/techdebt/noid/typed-migration-template

Make the migration template typed
tags/v21.0.0beta1
Morris Jobke 3 years ago
parent
commit
95020a4787
No account linked to committer's email address
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      core/Command/Db/Migrations/GenerateCommand.php

+ 3
- 3
core/Command/Db/Migrations/GenerateCommand.php View File

@@ -60,7 +60,7 @@ class {{classname}} extends SimpleMigrationStep {
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
* @param array $options
*/
public function preSchemaChange(IOutput $output, Closure $schemaClosure, array $options) {
public function preSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void {
}

/**
@@ -69,7 +69,7 @@ class {{classname}} extends SimpleMigrationStep {
* @param array $options
* @return null|ISchemaWrapper
*/
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) {
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
{{schemabody}}
}

@@ -78,7 +78,7 @@ class {{classname}} extends SimpleMigrationStep {
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
* @param array $options
*/
public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options) {
public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void {
}
}
';

Loading…
Cancel
Save