Skip to content

Commit

Permalink
Add the missing MailerTransportMigration service definition
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzmg committed Nov 20, 2024
1 parent 3226a34 commit af8ec96
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions config/migrations.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
namespace Symfony\Component\DependencyInjection\Loader\Configurator;

use Terminal42\NotificationCenterBundle\Migration\EmailGatewayMigration;
use Terminal42\NotificationCenterBundle\Migration\MailerTransportMigration;

return static function (ContainerConfigurator $container): void {
$services = $container->services();
Expand All @@ -15,4 +16,10 @@
service('database_connection'),
])
;

$services->set(MailerTransportMigration::class)
->args([
service('database_connection'),
])
;
};

0 comments on commit af8ec96

Please sign in to comment.