Skip to content

Commit

Permalink
Use $this->createResult() instead of new MigrationResult()
Browse files Browse the repository at this point in the history
  • Loading branch information
leofeyer committed Jul 21, 2020
1 parent 5850c24 commit 961ffcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core-bundle/src/Migration/Version410/RoutingMigration.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ public function run(): MigrationResult
->execute(['suffix' => $this->urlSuffix])
;

return new MigrationResult(true, '');
return $this->createResult(true);
}
}

0 comments on commit 961ffcd

Please sign in to comment.