Skip to content
Snippets Groups Projects
Unverified Commit 95020a47 authored by Morris Jobke's avatar Morris Jobke Committed by GitHub
Browse files

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

Make the migration template typed
parents 000c4b49 600381f8
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,7 @@ class {{classname}} extends SimpleMigrationStep { ...@@ -60,7 +60,7 @@ class {{classname}} extends SimpleMigrationStep {
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
* @param array $options * @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 { ...@@ -69,7 +69,7 @@ class {{classname}} extends SimpleMigrationStep {
* @param array $options * @param array $options
* @return null|ISchemaWrapper * @return null|ISchemaWrapper
*/ */
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) { public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
{{schemabody}} {{schemabody}}
} }
...@@ -78,7 +78,7 @@ class {{classname}} extends SimpleMigrationStep { ...@@ -78,7 +78,7 @@ class {{classname}} extends SimpleMigrationStep {
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
* @param array $options * @param array $options
*/ */
public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options) { public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void {
} }
} }
'; ';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment