From cce504ca879d76dea9eacb877040a0ac17d4b5a4 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Tue, 25 May 2021 19:37:37 +0200 Subject: [PATCH] Schema -> ISchemaWrapper This makes my autocomplete happier :) --- developer_manual/basics/storage/migrations.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/developer_manual/basics/storage/migrations.rst b/developer_manual/basics/storage/migrations.rst index 95112b1f0..1b901b02d 100644 --- a/developer_manual/basics/storage/migrations.rst +++ b/developer_manual/basics/storage/migrations.rst @@ -70,7 +70,7 @@ With this step the new column gets created: .. code-block:: php public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { - /** @var Schema $schema */ + /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); $table = $schema->getTable('twofactor_backupcodes'); @@ -109,7 +109,7 @@ With this the old column gets removed. .. code-block:: php public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { - /** @var Schema $schema */ + /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); $table = $schema->getTable('twofactor_backupcodes');