fixed two typehints on migrations repository

This commit is contained in:
Daniel Klabbers 2018-01-09 16:28:50 +01:00
parent bdc1a100cd
commit 714775cfed
2 changed files with 2 additions and 0 deletions

View File

@ -51,6 +51,7 @@ class DatabaseMigrationRepository implements MigrationRepositoryInterface
/** /**
* Get the ran migrations. * Get the ran migrations.
* *
* @param string $extension
* @return array * @return array
*/ */
public function getRan($extension = null) public function getRan($extension = null)

View File

@ -16,6 +16,7 @@ interface MigrationRepositoryInterface
/** /**
* Get the ran migrations for the given extension. * Get the ran migrations for the given extension.
* *
* @param string $extension
* @return array * @return array
*/ */
public function getRan($extension = null); public function getRan($extension = null);