From f5022c3885bc7be288c4ebe69a68751855140972 Mon Sep 17 00:00:00 2001 From: n4ss1m Date: Wed, 30 Oct 2024 08:19:15 +0000 Subject: [PATCH] Fix styling --- src/Providers/AlgerianCitiesServiceProvider.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Providers/AlgerianCitiesServiceProvider.php b/src/Providers/AlgerianCitiesServiceProvider.php index d100c28..4ee7c3f 100644 --- a/src/Providers/AlgerianCitiesServiceProvider.php +++ b/src/Providers/AlgerianCitiesServiceProvider.php @@ -36,7 +36,7 @@ public function boot() __DIR__.'/../../config/algerian-cities.php' => config_path('algerian-cities.php'), ], 'config'); - if(config('algerian-cities.use_routes', true)) { + if (config('algerian-cities.use_routes', true)) { $this->loadRoutesFrom(__DIR__.'/../../routes/api.php'); } @@ -56,8 +56,8 @@ public function register() * Uncomment this function call to load the config file. * If the config file is also publishable, it will merge with that file */ - $this->mergeConfigFrom( - __DIR__.'/../../config/algerian-cities.php', 'algerian-cities' - ); + $this->mergeConfigFrom( + __DIR__.'/../../config/algerian-cities.php', 'algerian-cities' + ); } }