Passed
Branch master (cd0021)
by Andrey
05:26
created
src/Relations/BelongsTo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
         $keys = [];
68 68
 
69 69
         foreach ($models as $model) {
70
-            if (! is_null($value = ModelAccessor::get($model, $this->foreignKey))) {
70
+            if (!is_null($value = ModelAccessor::get($model, $this->foreignKey))) {
71 71
                 $keys[] = $value;
72 72
             }
73 73
         }
Please login to merge, or discard this patch.
src/Relations/Relation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
      */
64 64
     protected function getKeys(array $models, $key = null)
65 65
     {
66
-        return array_unique(array_values(array_map(function ($value) use ($key) {
66
+        return array_unique(array_values(array_map(function($value) use ($key) {
67 67
             return $key ? ModelAccessor::get($value, $key) : ModelAccessor::get($value, $this->parent->getKeyName());
68 68
         }, $models)));
69 69
     }
Please login to merge, or discard this patch.
src/Relations/HasRelationships.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
      * @return BelongsToMany
54 54
      */
55 55
     public function belongsToMany($related, $table = null, $foreignPivotKey = null, $relatedPivotKey = null,
56
-                                  $parentKey = null, $relatedKey = null, $relation = null)
56
+                                    $parentKey = null, $relatedKey = null, $relation = null)
57 57
     {
58 58
         if (is_null($relation)) {
59 59
             $relation = $this->guessBelongsToManyRelation();
Please login to merge, or discard this patch.
src/Relations/MorphTo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
     {
130 130
         $foreign = $this->foreignKey;
131 131
 
132
-        return collect($this->dictionary[$type])->map(function ($models) use ($foreign) {
132
+        return collect($this->dictionary[$type])->map(function($models) use ($foreign) {
133 133
             return ModelAccessor::get(head($models), $foreign);
134 134
         })->values()->unique();
135 135
     }
Please login to merge, or discard this patch.
src/Builder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
             if (count($result) == count(array_unique($id))) {
67 67
                 return $result;
68 68
             }
69
-        } elseif (! is_null($result)) {
69
+        } elseif (!is_null($result)) {
70 70
             return $result;
71 71
         }
72 72
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      */
97 97
     public function firstSimpleOrFail($columns = ['*'])
98 98
     {
99
-        if (! is_null($model = $this->firstSimple($columns))) {
99
+        if (!is_null($model = $this->firstSimple($columns))) {
100 100
             return $model;
101 101
         }
102 102
 
Please login to merge, or discard this patch.