From eada4cccfc38d6205821b750ba355d1ea4bd58b4 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Tue, 21 Aug 2018 07:50:12 +0200 Subject: [PATCH] Fix generated migration class code The `@since` documentation is out of place here. Signed-off-by: Christoph Wurst --- core/Command/Db/Migrations/GenerateCommand.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/Command/Db/Migrations/GenerateCommand.php b/core/Command/Db/Migrations/GenerateCommand.php index 50d58a9ea1..f3af3e0e6d 100644 --- a/core/Command/Db/Migrations/GenerateCommand.php +++ b/core/Command/Db/Migrations/GenerateCommand.php @@ -55,7 +55,6 @@ class {{classname}} extends SimpleMigrationStep { * @param IOutput $output * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - * @since 13.0.0 */ public function preSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { } @@ -65,7 +64,6 @@ class {{classname}} extends SimpleMigrationStep { * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options * @return null|ISchemaWrapper - * @since 13.0.0 */ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { {{schemabody}} @@ -75,7 +73,6 @@ class {{classname}} extends SimpleMigrationStep { * @param IOutput $output * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - * @since 13.0.0 */ public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { }