Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Mar 13, 2024
1 parent 68c10a7 commit 83dd797
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/HeloLaravelServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
}

Expand All @@ -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);
Expand Down

0 comments on commit 83dd797

Please sign in to comment.