From 3bdb3f0f0e3deecc620a1267ea76e0971977334e Mon Sep 17 00:00:00 2001 From: Di Date: Mon, 6 Jan 2025 18:18:02 +0100 Subject: [PATCH] Apply fixes from StyleCI (#7) --- src/AdaServiceProvider.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/AdaServiceProvider.php b/src/AdaServiceProvider.php index 157d60d..0911afe 100644 --- a/src/AdaServiceProvider.php +++ b/src/AdaServiceProvider.php @@ -16,11 +16,11 @@ class AdaServiceProvider extends ServiceProvider */ public function boot() { - $this->loadViewsFrom(__DIR__ . '/../resources/views/prompts', 'ada'); + $this->loadViewsFrom(__DIR__.'/../resources/views/prompts', 'ada'); if ($this->app->runningInConsole()) { $this->publishes([ - __DIR__ . '/../config/ada.php' => config_path('ada.php'), + __DIR__.'/../config/ada.php' => config_path('ada.php'), ], 'ada-config'); } } @@ -30,20 +30,20 @@ public function boot() */ public function register() { - $this->mergeConfigFrom(__DIR__ . '/../config/ada.php', 'ada'); + $this->mergeConfigFrom(__DIR__.'/../config/ada.php', 'ada'); - $this->loadMigrationsFrom(__DIR__ . '/../database/migrations'); + $this->loadMigrationsFrom(__DIR__.'/../database/migrations'); $this->publishes([ - __DIR__ . '/../config/ada.php' => config_path('ada.php'), + __DIR__.'/../config/ada.php' => config_path('ada.php'), ], 'ada-config'); $this->publishes([ - __DIR__ . '/../database/migrations' => database_path('migrations'), + __DIR__.'/../database/migrations' => database_path('migrations'), ], 'ada-migrations'); $this->publishes([ - __DIR__ . '/../resources/views' => resource_path('views/vendor/ada'), + __DIR__.'/../resources/views' => resource_path('views/vendor/ada'), ], 'ada-views'); $this->app->singleton('ada', function () {