Completed
Push — master ( cc58f4...49d50b )
by Maxime
03:19
created
src/Distilleries/Expendable/Scopes/Translatable.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     {
44 44
         $translation = new Translation;
45 45
 
46
-        return $translation->getTable() . '.' . $translation->getIsoColumn();
46
+        return $translation->getTable().'.'.$translation->getIsoColumn();
47 47
     }
48 48
 
49 49
     /**
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     {
56 56
         $translation = new Translation;
57 57
 
58
-        return $translation->getTable() . '.' . $translation->getIdElementColumn();
58
+        return $translation->getTable().'.'.$translation->getIdElementColumn();
59 59
     }
60 60
 
61 61
     /**
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     {
68 68
         $translation = new Translation;
69 69
 
70
-        return $translation->getTable() . '.' . $translation->getModelColumn();
70
+        return $translation->getTable().'.'.$translation->getModelColumn();
71 71
     }
72 72
 
73 73
     /**
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     {
80 80
         $translation = new Translation;
81 81
 
82
-        return $translation->getTable() . '.' . $translation->getIdSourceColumn();
82
+        return $translation->getTable().'.'.$translation->getIdSourceColumn();
83 83
     }
84 84
 
85 85
     /**
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
             ->where($this->getQualifiedIsoColumn(), '=', $iso)->get();
103 103
 
104 104
         if (!$translation->isEmpty()) {
105
-            $translation->each(function($trans){
105
+            $translation->each(function($trans) {
106 106
                 $trans->delete();
107 107
             });
108 108
         }
Please login to merge, or discard this patch.