Passed
Push — master ( ac286c...f5af36 )
by Iman
04:03
created
src/TempTagServiceProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -35,11 +35,11 @@  discard block
 block discarded – undo
35 35
     {
36 36
         if ($this->app->runningInConsole()) {
37 37
             $this->publishes([
38
-                __DIR__.'/../config/temp_tag.php' => config_path('tag.php'),
38
+                __DIR__ . '/../config/temp_tag.php' => config_path('tag.php'),
39 39
             ], 'tag-config');
40 40
 
41 41
             $this->publishes([
42
-                __DIR__.'/../database/migrations' => database_path('migrations'),
42
+                __DIR__ . '/../database/migrations' => database_path('migrations'),
43 43
             ], 'migrations');
44 44
         }
45 45
 
@@ -49,14 +49,14 @@  discard block
 block discarded – undo
49 49
     private function registerMigrations()
50 50
     {
51 51
         if ($this->app->runningInConsole()) {
52
-            $this->loadMigrationsFrom(__DIR__.'/../database/migrations');
52
+            $this->loadMigrationsFrom(__DIR__ . '/../database/migrations');
53 53
         }
54 54
     }
55 55
 
56 56
     private function configure()
57 57
     {
58
-        if (! $this->app->configurationIsCached()) {
59
-            $this->mergeConfigFrom(__DIR__.'/../config/temp_tag.php', 'tag');
58
+        if (!$this->app->configurationIsCached()) {
59
+            $this->mergeConfigFrom(__DIR__ . '/../config/temp_tag.php', 'tag');
60 60
         }
61 61
     }
62 62
 
Please login to merge, or discard this patch.