Skip to content
Snippets Groups Projects
Unverified Commit 1a9f5513 authored by Roeland Jago Douma's avatar Roeland Jago Douma Committed by GitHub
Browse files

Merge pull request #17740 from nextcloud/fix/17479/always-return-schema

Return null from migration to match with typehint
parents f420ac94 fd836616
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ class Version1012Date20190808122342 extends SimpleMigrationStep {
* @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
* @param array $options
* @return null|ISchemaWrapper
* @since 13.0.0
* @since 17.0.0
*/
public function changeSchema(IOutput $output,
\Closure $schemaClosure,
......@@ -112,5 +112,7 @@ class Version1012Date20190808122342 extends SimpleMigrationStep {
return $schema;
}
return null;
}
}
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