@@ -17,7 +17,7 @@ public function handle(): int
1717 {
1818 $ this ->info ('Publishing migrations... ' );
1919 Artisan::call ('vendor:publish ' , [
20- '--provider ' => ' MeShaon \\ RequestAnalytics \\ RequestAnalyticsServiceProvider ' ,
20+ '--provider ' => RequestAnalyticsServiceProvider::class ,
2121 '--tag ' => 'laravel-request-analytics-migrations ' ,
2222 '--force ' => true ,
2323 ]);
@@ -55,15 +55,15 @@ public function handle(): int
5555
5656 $ this ->info ('Publishing config... ' );
5757 Artisan::call ('vendor:publish ' , [
58- '--provider ' => ' MeShaon \\ RequestAnalytics \\ RequestAnalyticsServiceProvider ' ,
58+ '--provider ' => RequestAnalyticsServiceProvider::class ,
5959 '--tag ' => 'laravel-request-analytics-config ' ,
6060 '--force ' => (bool ) $ this ->option ('force ' ),
6161 ]);
6262 $ this ->line (Artisan::output ());
6363
6464 $ this ->info ('Publishing assets... ' );
6565 Artisan::call ('vendor:publish ' , [
66- '--provider ' => ' MeShaon \\ RequestAnalytics \\ RequestAnalyticsServiceProvider ' ,
66+ '--provider ' => RequestAnalyticsServiceProvider::class ,
6767 '--tag ' => 'laravel-request-analytics-assets ' ,
6868 '--force ' => (bool ) $ this ->option ('force ' ),
6969 ]);
0 commit comments