Completed
Push — master ( 2205c9...6e2ebd )
by Mike
07:35 queued 03:43
created
src/TranslatableServiceProvider.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -35,25 +35,25 @@
 block discarded – undo
35 35
     {
36 36
     }
37 37
 =======
38
-	public function boot()
39
-	{
40
-		$this->loadMigrationsFrom(__DIR__ . '/database/migrations/');
38
+    public function boot()
39
+    {
40
+        $this->loadMigrationsFrom(__DIR__ . '/database/migrations/');
41 41
 		
42
-		$this->publishes([
43
-			__DIR__ . '/database/migrations/' => database_path('migrations')
44
-		], 'migrations');
42
+        $this->publishes([
43
+            __DIR__ . '/database/migrations/' => database_path('migrations')
44
+        ], 'migrations');
45 45
 		
46
-		$this->publishes([
47
-			__DIR__ . '/config/languages.php' => config_path('languages.php'),
48
-		], 'config');
46
+        $this->publishes([
47
+            __DIR__ . '/config/languages.php' => config_path('languages.php'),
48
+        ], 'config');
49 49
 		
50
-		Collection::macro('for', function ($field, $code) {
51
-			return $this->where('key', $field)->where('locale', $code)->pluck('value')->first() ?? $field;
52
-		});
53
-	}
50
+        Collection::macro('for', function ($field, $code) {
51
+            return $this->where('key', $field)->where('locale', $code)->pluck('value')->first() ?? $field;
52
+        });
53
+    }
54 54
 	
55
-	public function register()
56
-	{
57
-	}
55
+    public function register()
56
+    {
57
+    }
58 58
 >>>>>>> Stashed changes
59 59
 }
Please login to merge, or discard this patch.