From 83dd797f08e1e6c7b7fc51f14d87986ad6373358 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Wed, 13 Mar 2024 14:26:38 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/HeloLaravelServiceProvider.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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);