Completed
Push — master ( b4e56c...1b6c56 )
by Avtandil
04:39
created
src/MultiLang/MultiLang.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -288,9 +288,9 @@
 block discarded – undo
288 288
 
289 289
         foreach ($locales as $locale => $val) {
290 290
             $router->group([
291
-                               'prefix' => $locale,
292
-                               'as'     => $locale . '.',
293
-                           ], $callback);
291
+                                'prefix' => $locale,
292
+                                'as'     => $locale . '.',
293
+                            ], $callback);
294 294
         }
295 295
 
296 296
     }
Please login to merge, or discard this patch.
src/MultiLang/Repository.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -203,11 +203,11 @@
 block discarded – undo
203 203
                 $this->getDb()
204 204
                     ->table($table)
205 205
                     ->insert([
206
-                                 'key'   => $k,
207
-                                 'lang'  => $lang,
208
-                                 'scope' => $scope,
209
-                                 'value' => $v,
210
-                             ]);
206
+                                    'key'   => $k,
207
+                                    'lang'  => $lang,
208
+                                    'scope' => $scope,
209
+                                    'value' => $v,
210
+                                ]);
211 211
             }
212 212
         }
213 213
         return true;
Please login to merge, or discard this patch.
src/MultiLang/MultiLangServiceProvider.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,9 +35,9 @@
 block discarded – undo
35 35
     {
36 36
         // Publish config files
37 37
         $this->publishes([
38
-                             __DIR__ . '/../config/config.php' => config_path('multilang.php'),
39
-                             __DIR__ . '/../views'             => base_path('resources/views/vendor/multilang'),
40
-                         ]);
38
+                                __DIR__ . '/../config/config.php' => config_path('multilang.php'),
39
+                                __DIR__ . '/../views'             => base_path('resources/views/vendor/multilang'),
40
+                            ]);
41 41
 
42 42
         // Append the country settings
43 43
         $this->mergeConfigFrom(
Please login to merge, or discard this patch.