diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-03-06 16:33:01 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-03-06 16:38:25 +0100 |
commit | df9e2b828aacd31c16028b4eca4d0e220e6929e7 (patch) | |
tree | 6918e728f4f88585b74875f1beb28706f8fdd05d /core/Migrations | |
parent | ed81337461c8c7763eb07a489fc980491dc9c046 (diff) | |
download | nextcloud-server-df9e2b828aacd31c16028b4eca4d0e220e6929e7.tar.gz nextcloud-server-df9e2b828aacd31c16028b4eca4d0e220e6929e7.zip |
Fix mismatching docblock return types
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/Migrations')
-rw-r--r-- | core/Migrations/Version16000Date20190212081545.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/Migrations/Version16000Date20190212081545.php b/core/Migrations/Version16000Date20190212081545.php index e33b475896f..feb271b1f01 100644 --- a/core/Migrations/Version16000Date20190212081545.php +++ b/core/Migrations/Version16000Date20190212081545.php @@ -38,7 +38,8 @@ class Version16000Date20190212081545 extends SimpleMigrationStep { * @param IOutput $output * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - * @return null|ISchemaWrapper + * + * @return ISchemaWrapper */ public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ISchemaWrapper { /** @var ISchemaWrapper $schema */ |