@@ -118,7 +118,7 @@ discard block |
||
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 |
||
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 | } |
@@ -88,13 +88,13 @@ |
||
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 | } |
@@ -208,7 +208,7 @@ |
||
208 | 208 | $this->target, |
209 | 209 | $relation |
210 | 210 | ); |
211 | - } catch (SchemaException | FactoryException $e) { |
|
211 | + } catch (SchemaException|FactoryException $e) { |
|
212 | 212 | throw new LoaderException( |
213 | 213 | sprintf('Unable to create loader: %s', $e->getMessage()), |
214 | 214 | $e->getCode(), |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | } |
245 | 245 | |
246 | 246 | if ($args[0] instanceof Closure) { |
247 | - $args[0] = $args[0] = function ($q) use ($args): void { |
|
247 | + $args[0] = $args[0] = function($q) use ($args): void { |
|
248 | 248 | $args[0]($this->withQuery($q)); |
249 | 249 | }; |
250 | 250 | } |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | } |
266 | 266 | |
267 | 267 | if ($value instanceof Closure) { |
268 | - $value = function ($q) use ($value): void { |
|
268 | + $value = function($q) use ($value): void { |
|
269 | 269 | $value($this->withQuery($q)); |
270 | 270 | }; |
271 | 271 | } |
@@ -170,7 +170,7 @@ |
||
170 | 170 | $column = sprintf('DISTINCT(%s)', $this->loader->getPK()); |
171 | 171 | } |
172 | 172 | |
173 | - return (int) $this->__call('count', [$column]); |
|
173 | + return (int)$this->__call('count', [$column]); |
|
174 | 174 | } |
175 | 175 | |
176 | 176 | /** |
@@ -116,7 +116,7 @@ |
||
116 | 116 | */ |
117 | 117 | public function configureQuery(SelectQuery $query, array $outerKeys = []): SelectQuery |
118 | 118 | { |
119 | - if ($this->isLoaded() && $this->isJoined() && (int) $query->getLimit() !== 0) { |
|
119 | + if ($this->isLoaded() && $this->isJoined() && (int)$query->getLimit() !== 0) { |
|
120 | 120 | throw new LoaderException('Unable to load data using join with limit on parent query'); |
121 | 121 | } |
122 | 122 |
@@ -47,13 +47,13 @@ |
||
47 | 47 | |
48 | 48 | switch ($rule) { |
49 | 49 | case 'int': |
50 | - $values[$key] = (int) $values[$key]; |
|
50 | + $values[$key] = (int)$values[$key]; |
|
51 | 51 | break; |
52 | 52 | case 'bool': |
53 | - $values[$key] = (bool) $values[$key]; |
|
53 | + $values[$key] = (bool)$values[$key]; |
|
54 | 54 | break; |
55 | 55 | case 'float': |
56 | - $values[$key] = (float) $values[$key]; |
|
56 | + $values[$key] = (float)$values[$key]; |
|
57 | 57 | break; |
58 | 58 | case 'datetime': |
59 | 59 | $values[$key] = new DateTimeImmutable( |
@@ -46,7 +46,7 @@ |
||
46 | 46 | return true; |
47 | 47 | } |
48 | 48 | |
49 | - $criteria = (string) $data[$this->duplicateCriteria]; |
|
49 | + $criteria = (string)$data[$this->duplicateCriteria]; |
|
50 | 50 | |
51 | 51 | if (isset($this->duplicates[$criteria])) { |
52 | 52 | // duplicate is presented, let's reduplicate |
@@ -116,7 +116,7 @@ |
||
116 | 116 | */ |
117 | 117 | public function configureQuery(SelectQuery $query, array $outerKeys = []): SelectQuery |
118 | 118 | { |
119 | - if ($this->isLoaded() && $this->isJoined() && (int) $query->getLimit() !== 0) { |
|
119 | + if ($this->isLoaded() && $this->isJoined() && (int)$query->getLimit() !== 0) { |
|
120 | 120 | throw new LoaderException('Unable to load data using join with limit on parent query'); |
121 | 121 | } |
122 | 122 |