Skip to content

Commit 34e8d9c

Browse files
committed
Merge branch 'updates' of https://github.com/beyondcode/helo-laravel into updates
2 parents fa569ea + a25d38f commit 34e8d9c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/HeloLaravelServiceProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function boot()
2323
$this->bootMailable();
2424

2525
if ($this->app->runningInConsole()) {
26-
View::addNamespace('helo', __DIR__ . '/../resources/views');
26+
View::addNamespace('helo', __DIR__.'/../resources/views');
2727
}
2828
}
2929

@@ -38,11 +38,11 @@ public function register()
3838
]);
3939

4040
$this->publishes([
41-
__DIR__ . '/../config/helo.php' => base_path('config/helo.php'),
41+
__DIR__.'/../config/helo.php' => base_path('config/helo.php'),
4242
], 'config');
4343
}
4444

45-
$this->mergeConfigFrom(__DIR__ . '/../config/helo.php', 'helo');
45+
$this->mergeConfigFrom(__DIR__.'/../config/helo.php', 'helo');
4646

4747
$this->app->singleton(Mailer::class, function ($app) {
4848
$version = $this->version($app);

0 commit comments

Comments
 (0)