From d175953f902a21e71d5be3f14407776ccc2ed61d Mon Sep 17 00:00:00 2001 From: Daniel Klabbers Date: Tue, 9 Jan 2018 16:28:50 +0100 Subject: [PATCH] fixed two typehints on migrations repository --- framework/core/src/Database/DatabaseMigrationRepository.php | 1 + framework/core/src/Database/MigrationRepositoryInterface.php | 1 + 2 files changed, 2 insertions(+) diff --git a/framework/core/src/Database/DatabaseMigrationRepository.php b/framework/core/src/Database/DatabaseMigrationRepository.php index 3e02ae84a..5ba06cc09 100644 --- a/framework/core/src/Database/DatabaseMigrationRepository.php +++ b/framework/core/src/Database/DatabaseMigrationRepository.php @@ -51,6 +51,7 @@ class DatabaseMigrationRepository implements MigrationRepositoryInterface /** * Get the ran migrations. * + * @param string $extension * @return array */ public function getRan($extension = null) diff --git a/framework/core/src/Database/MigrationRepositoryInterface.php b/framework/core/src/Database/MigrationRepositoryInterface.php index fccc76ac2..7bd9265e8 100644 --- a/framework/core/src/Database/MigrationRepositoryInterface.php +++ b/framework/core/src/Database/MigrationRepositoryInterface.php @@ -16,6 +16,7 @@ interface MigrationRepositoryInterface /** * Get the ran migrations for the given extension. * + * @param string $extension * @return array */ public function getRan($extension = null);