Test Failed
Push — master ( 0d9010...2c6dfc )
by Бабичев
10:43 queued 08:09
created
src/SettingsServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,15 +22,15 @@  discard block
 block discarded – undo
22 22
 
23 23
         if (function_exists('config_path')) {
24 24
             $this->publishes([
25
-                dirname(__DIR__) . '/config/config.php' => config_path('bavix-settings.php'),
25
+                dirname(__DIR__).'/config/config.php' => config_path('bavix-settings.php'),
26 26
             ], 'laravel-settings-config');
27 27
         }
28 28
 
29 29
         $this->publishes([
30
-            dirname(__DIR__) . '/database/' => database_path('migrations'),
30
+            dirname(__DIR__).'/database/' => database_path('migrations'),
31 31
         ], 'laravel-settings-migrations');
32 32
 
33
-        $this->loadMigrationsFrom([__DIR__ . '/../database']);
33
+        $this->loadMigrationsFrom([__DIR__.'/../database']);
34 34
     }
35 35
 
36 36
     /**
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     public function register(): void
42 42
     {
43 43
         $this->mergeConfigFrom(
44
-            dirname(__DIR__) . '/config/config.php',
44
+            dirname(__DIR__).'/config/config.php',
45 45
             'bavix-settings'
46 46
         );
47 47
 
Please login to merge, or discard this patch.