From 0490e7c9b0bab54fc1befca8e5c6e1ff23e42338 Mon Sep 17 00:00:00 2001 From: Ben Carey Date: Sun, 11 Aug 2024 19:27:16 +0100 Subject: [PATCH] Fixed issue with incorrect config key in the service provider --- src/SnsServiceProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SnsServiceProvider.php b/src/SnsServiceProvider.php index 0b9be75..001e90e 100644 --- a/src/SnsServiceProvider.php +++ b/src/SnsServiceProvider.php @@ -33,7 +33,7 @@ public function boot(): void public function register(): void { $this->mergeConfigFrom( - __DIR__ . '/../config/aws.php', 'aws.sns' + __DIR__ . '/../config/aws.php', 'aws' ); $this->registerTopicManager();