Skip to content

Commit 2751602

Browse files
authored
Merge pull request #95 from Seros/fix-data-not-available-versions
Fix data not available versions
2 parents a6ca614 + 9266256 commit 2751602

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Check/DoctrineMigration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function check(): ResultInterface
6363

6464
$notAvailableVersion = array_diff($migratedVersions, $availableVersions);
6565
if (! empty($notAvailableVersion)) {
66-
return new Failure('Migrations applied which are not available', $notMigratedVersions);
66+
return new Failure('Migrations applied which are not available', $notAvailableVersion);
6767
}
6868

6969
return new Success();

0 commit comments

Comments
 (0)