diff --git a/src/HeloLaravelServiceProvider.php b/src/HeloLaravelServiceProvider.php index 37b0350..52565a4 100644 --- a/src/HeloLaravelServiceProvider.php +++ b/src/HeloLaravelServiceProvider.php @@ -23,7 +23,7 @@ public function boot() $this->bootMailable(); if ($this->app->runningInConsole()) { - View::addNamespace('helo', __DIR__ . '/../resources/views'); + View::addNamespace('helo', __DIR__.'/../resources/views'); } } @@ -38,11 +38,11 @@ public function register() ]); $this->publishes([ - __DIR__ . '/../config/helo.php' => base_path('config/helo.php'), + __DIR__.'/../config/helo.php' => base_path('config/helo.php'), ], 'config'); } - $this->mergeConfigFrom(__DIR__ . '/../config/helo.php', 'helo'); + $this->mergeConfigFrom(__DIR__.'/../config/helo.php', 'helo'); $this->app->singleton(Mailer::class, function ($app) { $version = $this->version($app);