From 5290cc77bccafde734f8f4c3fe7da826c0b861cd Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Thu, 15 Oct 2020 10:58:51 +0200 Subject: [PATCH] Add psalm types for the migration schema closure Signed-off-by: Christoph Wurst --- lib/public/Migration/IMigrationStep.php | 6 ++++++ lib/public/Migration/SimpleMigrationStep.php | 21 +++++++++----------- 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/lib/public/Migration/IMigrationStep.php b/lib/public/Migration/IMigrationStep.php index e5c4d50a299..3d0e23e5d38 100644 --- a/lib/public/Migration/IMigrationStep.php +++ b/lib/public/Migration/IMigrationStep.php @@ -1,4 +1,7 @@ * @@ -49,6 +52,7 @@ interface IMigrationStep { /** * @param IOutput $output * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` + * @psalm-param Closure():ISchemaWrapper $schemaClosure * @param array $options * @since 13.0.0 */ @@ -57,6 +61,7 @@ interface IMigrationStep { /** * @param IOutput $output * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` + * @psalm-param Closure():ISchemaWrapper $schemaClosure * @param array $options * @return null|ISchemaWrapper * @since 13.0.0 @@ -66,6 +71,7 @@ interface IMigrationStep { /** * @param IOutput $output * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` + * @psalm-param Closure():ISchemaWrapper $schemaClosure * @param array $options * @since 13.0.0 */ diff --git a/lib/public/Migration/SimpleMigrationStep.php b/lib/public/Migration/SimpleMigrationStep.php index 76d86b8f04c..4abf8ea2871 100644 --- a/lib/public/Migration/SimpleMigrationStep.php +++ b/lib/public/Migration/SimpleMigrationStep.php @@ -1,4 +1,7 @@ * @@ -25,8 +28,6 @@ namespace OCP\Migration; -use OCP\DB\ISchemaWrapper; - /** * @since 13.0.0 */ @@ -52,19 +53,16 @@ abstract class SimpleMigrationStep implements IMigrationStep { } /** - * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` - * @param array $options + * {@inheritDoc} + * * @since 13.0.0 */ public function preSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { } /** - * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` - * @param array $options - * @return null|ISchemaWrapper + * {@inheritDoc} + * * @since 13.0.0 */ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { @@ -72,9 +70,8 @@ abstract class SimpleMigrationStep implements IMigrationStep { } /** - * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` - * @param array $options + * {@inheritDoc} + * * @since 13.0.0 */ public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { -- 2.39.5