@@ -382,7 +382,7 @@ discard block |
||
382 | 382 | // so we can't bail out early |
383 | 383 | $rawCount += $results->count(); |
384 | 384 | // now bolt on filtrate to accumulating result set if we haven't accumulated enough bitz |
385 | - if ($rawTop > $resultSet->count() + $skip) { |
|
385 | + if ($rawTop > $resultSet->count()+$skip) { |
|
386 | 386 | $resultSet = collect(array_merge($resultSet->all(), $results->all())); |
387 | 387 | $sliceAmount = min($skip, $resultSet->count()); |
388 | 388 | $resultSet = $resultSet->slice($sliceAmount); |
@@ -454,7 +454,7 @@ discard block |
||
454 | 454 | if (QueryType::COUNT() == $qVal || QueryType::ENTITIES_WITH_COUNT() == $qVal) { |
455 | 455 | $result->count = $resultCount; |
456 | 456 | } |
457 | - $hazMore = $bulkSetCount > $skip + count($resultSet); |
|
457 | + $hazMore = $bulkSetCount > $skip+count($resultSet); |
|
458 | 458 | $result->hasMore = $hazMore; |
459 | 459 | } |
460 | 460 | } |
@@ -35,6 +35,6 @@ |
||
35 | 35 | public function getRelationships() |
36 | 36 | { |
37 | 37 | return self::$relationNames = self::$relationNames ?? |
38 | - ModelReflectionHelper::getRelationshipsFromMethods(/* @scrutinizer ignore-type */$this); |
|
38 | + ModelReflectionHelper::getRelationshipsFromMethods(/* @scrutinizer ignore-type */$this); |
|
39 | 39 | } |
40 | 40 | } |
@@ -136,7 +136,7 @@ |
||
136 | 136 | |
137 | 137 | $topCountValue = $this->getRequest()->getTopOptionCount(); |
138 | 138 | if (null !== $topCountValue) { |
139 | - $remainingCount = $topCountValue - $this->getRequest()->getTopCount(); |
|
139 | + $remainingCount = $topCountValue-$this->getRequest()->getTopCount(); |
|
140 | 140 | if (0 < $remainingCount) { |
141 | 141 | if (null !== $queryParameterString) { |
142 | 142 | $queryParameterString .= '&'; |
@@ -206,7 +206,7 @@ |
||
206 | 206 | |
207 | 207 | $isOk = true; |
208 | 208 | $isOk &= $required == $requireResult; |
209 | - $isOk &= (null === $this->targType) === (null === $this->foreignFieldName); |
|
209 | + $isOk &= (null === $this->targType) === (null === $this->foreignFieldName); |
|
210 | 210 | $isOk &= count($this->throughFieldChain) >= 2; |
211 | 211 | |
212 | 212 | return boolval($isOk); |
@@ -188,8 +188,8 @@ |
||
188 | 188 | */ |
189 | 189 | protected function updateLightStack(int $newCount): void |
190 | 190 | { |
191 | - $this->lightStack[$newCount - 1]['count']--; |
|
192 | - if (0 == $this->lightStack[$newCount - 1]['count']) { |
|
191 | + $this->lightStack[$newCount-1]['count']--; |
|
192 | + if (0 == $this->lightStack[$newCount-1]['count']) { |
|
193 | 193 | array_pop($this->lightStack); |
194 | 194 | } |
195 | 195 | } |
@@ -226,10 +226,10 @@ |
||
226 | 226 | /** @var array<string, array> */ |
227 | 227 | private static $fieldOrderCache = [ |
228 | 228 | 'BelongsTo' => ['foreignKey', 'ownerKey'], |
229 | - 'BelongsToMany' => ['parentKey','foreignPivotKey','relatedPivotKey','relatedKey'], |
|
230 | - 'HasOneOrMany' => ['localKey', 'foreignKey' ], |
|
229 | + 'BelongsToMany' => ['parentKey', 'foreignPivotKey', 'relatedPivotKey', 'relatedKey'], |
|
230 | + 'HasOneOrMany' => ['localKey', 'foreignKey'], |
|
231 | 231 | 'HasManyThrough' => ['localKey', 'firstKey', 'secondLocalKey', 'secondKey'], |
232 | - 'MorphToMany' => ['parentKey','foreignPivotKey','morphType', 'relatedPivotKey','relatedKey'], |
|
232 | + 'MorphToMany' => ['parentKey', 'foreignPivotKey', 'morphType', 'relatedPivotKey', 'relatedKey'], |
|
233 | 233 | 'MorphTo' => ['foreignKey', 'morphType', 'ownerKey'], |
234 | 234 | 'MorphOneOrMany' => ['localKey', 'morphType', 'foreignKey'], |
235 | 235 | ]; |
@@ -58,7 +58,7 @@ |
||
58 | 58 | }; |
59 | 59 | $this->functionDescriptionParsers[ODataConstants::STRFUN_ENDSWITH] = function ($params) { |
60 | 60 | return '(strcmp(substr(' . $params[0] . ', strlen(' . $params[0] . ') - strlen(' . $params[1] . ')), ' |
61 | - . $params[1] . ') === 0)'; |
|
61 | + . $params[1] . ') === 0)'; |
|
62 | 62 | }; |
63 | 63 | $this->functionDescriptionParsers[ODataConstants::STRFUN_INDEXOF] = function ($params) { |
64 | 64 | return 'strpos(' . $params[0] . ', ' . $params[1] . ')'; |
@@ -71,7 +71,7 @@ |
||
71 | 71 | $kVal = $typeKind; |
72 | 72 | if (!(ResourceTypeKind::PRIMITIVE() == $kVal || ResourceTypeKind::COMPLEX() == $kVal)) { |
73 | 73 | $msg = '$bagItemResourceTypeKind != ResourceTypeKind::PRIMITIVE' |
74 | - . ' && $bagItemResourceTypeKind != ResourceTypeKind::COMPLEX'; |
|
74 | + . ' && $bagItemResourceTypeKind != ResourceTypeKind::COMPLEX'; |
|
75 | 75 | throw new InvalidOperationException($msg); |
76 | 76 | } |
77 | 77 | if (null == $result) { |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | $fileName = $method->getFileName(); |
40 | 40 | |
41 | 41 | $file = new SplFileObject($fileName); |
42 | - $file->seek($method->getStartLine() - 1); |
|
42 | + $file->seek($method->getStartLine()-1); |
|
43 | 43 | /** @var string $code */ |
44 | 44 | $code = ''; |
45 | 45 | while ($file->key() < $method->getEndLine()) { |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | $code = preg_replace('/\s\s+/', '', $code); |
52 | 52 | /** @var int $begin */ |
53 | 53 | $begin = strpos($code, 'function('); |
54 | - $code = substr($code, (int)$begin, strrpos($code, '}') - $begin + 1); |
|
54 | + $code = substr($code, (int) $begin, strrpos($code, '}')-$begin+1); |
|
55 | 55 | return $code; |
56 | 56 | } |
57 | 57 | |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | ) { |
92 | 92 | continue; |
93 | 93 | } |
94 | - $relationships[]= $method; |
|
94 | + $relationships[] = $method; |
|
95 | 95 | } |
96 | 96 | } |
97 | 97 | return $relationships; |