Passed
Push — master ( 92ce5e...e90b8a )
by Jonas
02:07 queued 13s
created
src/HasManyDeep.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
         if ($this->customThroughKeyCallback) {
154 154
             $columns[] = ($this->customThroughKeyCallback)($alias);
155 155
         } else {
156
-            $columns[] = $this->getQualifiedFirstKeyName() . " as $alias";
156
+            $columns[] = $this->getQualifiedFirstKeyName()." as $alias";
157 157
         }
158 158
 
159 159
         if ($this->hasLeadingCompositeKey()) {
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
         }
186 186
 
187 187
         foreach ($columns as $column) {
188
-            $this->query->withoutGlobalScope(__CLASS__ . ":$column");
188
+            $this->query->withoutGlobalScope(__CLASS__.":$column");
189 189
         }
190 190
 
191 191
         return $this;
Please login to merge, or discard this patch.
src/Eloquent/Relations/Traits/HasExistenceQueries.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
                     );
34 34
                 }
35 35
 
36
-                $table = $throughParent->getTable() . ' as ' . $this->getRelationCountHash();
36
+                $table = $throughParent->getTable().' as '.$this->getRelationCountHash();
37 37
 
38 38
                 $throughParent->setTable($table);
39 39
 
Please login to merge, or discard this patch.