@@ -35,11 +35,11 @@ discard block |
||
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 |
||
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 |