Passed
Push — master ( 9676b0...44a032 )
by Anton
02:07
created
src/Relation/HasMany.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      */
119 119
     protected function calcDeleted(array $related, array $original)
120 120
     {
121
-        return array_udiff($original ?? [], $related, function ($a, $b) {
121
+        return array_udiff($original ?? [], $related, function($a, $b) {
122 122
             return strcmp(spl_object_hash($a), spl_object_hash($b));
123 123
         });
124 124
     }
@@ -162,12 +162,12 @@  discard block
 block discarded – undo
162 162
             $store->register($this->outerKey, null, true);
163 163
             $rNode->getState()->decClaim();
164 164
 
165
-            return new Condition($store, function () use ($rNode) {
165
+            return new Condition($store, function() use ($rNode) {
166 166
                 return !$rNode->getState()->hasClaims();
167 167
             });
168 168
         }
169 169
 
170
-        return new Condition($this->orm->queueDelete($related), function () use ($rNode) {
170
+        return new Condition($this->orm->queueDelete($related), function() use ($rNode) {
171 171
             return !$rNode->getState()->hasClaims();
172 172
         });
173 173
     }
Please login to merge, or discard this patch.
src/Relation/HasOne.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,13 +88,13 @@
 block discarded – undo
88 88
             $store->register($this->outerKey, null, true);
89 89
             $rNode->getState()->decClaim();
90 90
 
91
-            return new Condition($store, function () use ($rNode) {
91
+            return new Condition($store, function() use ($rNode) {
92 92
                 return !$rNode->getState()->hasClaims();
93 93
             });
94 94
         }
95 95
 
96 96
         // only delete original child when no other objects claim it
97
-        return new Condition($this->orm->queueDelete($original), function () use ($rNode) {
97
+        return new Condition($this->orm->queueDelete($original), function() use ($rNode) {
98 98
             return !$rNode->getState()->hasClaims();
99 99
         });
100 100
     }
Please login to merge, or discard this patch.