@@ -17,7 +17,7 @@ |
||
17 | 17 | */ |
18 | 18 | public function up() |
19 | 19 | { |
20 | - Schema::create('_lang_switcher', function (Blueprint $table) { |
|
20 | + Schema::create('_lang_switcher', function(Blueprint $table) { |
|
21 | 21 | $table->increments('id'); |
22 | 22 | $table->string('class', 20)->default(''); |
23 | 23 | $table->string('method', 20)->default(''); |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | { |
28 | 28 | $this->publishes( |
29 | 29 | [ |
30 | - __DIR__.'/config/lang-switch.php' => config_path('lang-switch.php'), |
|
30 | + __DIR__ . '/config/lang-switch.php' => config_path('lang-switch.php'), |
|
31 | 31 | ] |
32 | 32 | ); |
33 | 33 | } |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public function boot() |
39 | 39 | { |
40 | - $this->loadMigrationsFrom(__DIR__.'/migration'); |
|
40 | + $this->loadMigrationsFrom(__DIR__ . '/migration'); |
|
41 | 41 | if ($this->app->runningInConsole()) { |
42 | 42 | $this->publishAssets(); |
43 | 43 | } |