Completed
Pull Request — master (#219)
by Christopher
05:44 queued 41s
created
src/Models/ObjectMap/Entities/EntityGubbins.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -119,13 +119,13 @@  discard block
 block discarded – undo
119 119
     public function setFields(array $fields)
120 120
     {
121 121
         if (0 == count($fields)) {
122
-            $msg = 'Fields array must not be empty for '.$this->getClassName();
122
+            $msg = 'Fields array must not be empty for ' . $this->getClassName();
123 123
             throw new \Exception($msg);
124 124
         }
125 125
         $keys = [];
126 126
         foreach ($fields as $propName => $field) {
127 127
             if (!$field instanceof EntityField) {
128
-                $msg = 'Fields array must only have EntityField objects for '.$this->getClassName();
128
+                $msg = 'Fields array must only have EntityField objects for ' . $this->getClassName();
129 129
                 throw new \Exception($msg);
130 130
             }
131 131
             if ($field->getIsKeyField()) {
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
             }
134 134
         }
135 135
         if (0 == count($keys)) {
136
-            $msg = 'No key field supplied in fields array for '.$this->getClassName();
136
+            $msg = 'No key field supplied in fields array for ' . $this->getClassName();
137 137
             throw new \Exception($msg);
138 138
         }
139 139
         $this->fields = $fields;
Please login to merge, or discard this patch.
src/Models/MetadataTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -635,7 +635,7 @@  discard block
 block discarded – undo
635 635
     public function retrieveCasts()
636 636
     {
637 637
         $exists = method_exists($this, 'getCasts');
638
-        return $exists ? (array)$this->getCasts() : (array)$this->casts;
638
+        return $exists ? (array) $this->getCasts() : (array) $this->casts;
639 639
     }
640 640
 
641 641
     /**
@@ -782,7 +782,7 @@  discard block
 block discarded – undo
782 782
             $builder = $connect->getSchemaBuilder();
783 783
             $columns = $builder->getColumnListing($table);
784 784
 
785
-            self::$tableColumns = (array)$columns;
785
+            self::$tableColumns = (array) $columns;
786 786
         }
787 787
         return self::$tableColumns;
788 788
     }
Please login to merge, or discard this patch.
src/Providers/MetadataProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     {
136 136
         /** @var SimpleMetadataProvider $meta */
137 137
         $meta = App::make('metadata');
138
-        $namespace = $meta->getContainerNamespace().'.';
138
+        $namespace = $meta->getContainerNamespace() . '.';
139 139
 
140 140
         $entities = $objectModel->getEntities();
141 141
         foreach ($entities as $entity) {
@@ -150,13 +150,13 @@  discard block
 block discarded – undo
150 150
             $entity->setOdataResourceType($entityType);
151 151
             $this->implementProperties($entity);
152 152
             $meta->addResourceSet($pluralName, $entityType);
153
-            $meta->oDataEntityMap[$className] = $meta->oDataEntityMap[$namespace.$entityName];
153
+            $meta->oDataEntityMap[$className] = $meta->oDataEntityMap[$namespace . $entityName];
154 154
         }
155 155
         $metaCount = count($meta->oDataEntityMap);
156 156
         $entityCount = count($entities);
157 157
         $expected = 2 * $entityCount;
158 158
         if ($metaCount != $expected) {
159
-            $msg = 'Expected ' . $expected . ' items, actually got '.$metaCount;
159
+            $msg = 'Expected ' . $expected . ' items, actually got ' . $metaCount;
160 160
             throw new InvalidOperationException($msg);
161 161
         }
162 162
 
Please login to merge, or discard this patch.
src/Query/LaravelReadQueryUtilityTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
         $values = $skipToken->getOrderByKeysInToken();
37 37
         $numValues = count($values);
38 38
         if ($numValues != count($segments)) {
39
-            $msg = 'Expected '.count($segments).', got '.$numValues;
39
+            $msg = 'Expected ' . count($segments) . ', got ' . $numValues;
40 40
             throw new InvalidOperationException($msg);
41 41
         }
42 42
 
Please login to merge, or discard this patch.
src/Query/LaravelReadQuery.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
                     // so we can't bail out early
387 387
                     $rawCount += $results->count();
388 388
                     // now bolt on filtrate to accumulating result set if we haven't accumulated enough bitz
389
-                    if ($rawTop > $resultSet->count() + $skip) {
389
+                    if ($rawTop > $resultSet->count()+$skip) {
390 390
                         $resultSet = collect(array_merge($resultSet->all(), $results->all()));
391 391
                         $sliceAmount = min($skip, $resultSet->count());
392 392
                         $resultSet = $resultSet->slice($sliceAmount);
@@ -461,7 +461,7 @@  discard block
 block discarded – undo
461 461
         if (QueryType::COUNT() == $qVal || QueryType::ENTITIES_WITH_COUNT() == $qVal) {
462 462
             $result->count = $resultCount;
463 463
         }
464
-        $hazMore = $bulkSetCount > $skip + count($resultSet);
464
+        $hazMore = $bulkSetCount > $skip+count($resultSet);
465 465
         $result->hasMore = $hazMore;
466 466
     }
467 467
 }
Please login to merge, or discard this patch.
src/Serialisers/SerialiseDepWrapperTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -186,8 +186,8 @@
 block discarded – undo
186 186
      */
187 187
     protected function updateLightStack(int $newCount)
188 188
     {
189
-        $this->lightStack[$newCount - 1]['count']--;
190
-        if (0 == $this->lightStack[$newCount - 1]['count']) {
189
+        $this->lightStack[$newCount-1]['count']--;
190
+        if (0 == $this->lightStack[$newCount-1]['count']) {
191 191
             array_pop($this->lightStack);
192 192
         }
193 193
     }
Please login to merge, or discard this patch.
src/Providers/MetadataBaseProvider.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
         $class = __CLASS__;
65 65
         if (!isset($classMap[$class])) {
66
-            throw new \Exception(sprintf('%s was not found in autoload class map, this usually indicates you '.
66
+            throw new \Exception(sprintf('%s was not found in autoload class map, this usually indicates you ' .
67 67
             'need to dump an optimised autoloader (`composer dump-autoload -o`)', $class));
68 68
         }
69 69
     }
Please login to merge, or discard this patch.
src/Models/MetadataRelationsTrait.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -187,14 +187,14 @@  discard block
 block discarded – undo
187 187
 
188 188
             $keyRaw = $relation->$fkMethodName();
189 189
             $keySegments = explode('.', $keyRaw);
190
-            $keyName = $keySegments[count($keySegments) - 1];
190
+            $keyName = $keySegments[count($keySegments)-1];
191 191
             $localRaw = $relation->$rkMethodName();
192 192
             $localSegments = explode('.', $localRaw);
193
-            $localName = $localSegments[count($localSegments) - 1];
193
+            $localName = $localSegments[count($localSegments)-1];
194 194
             if (null !== $thruName) {
195 195
                 $thruRaw = $relation->$thruName();
196 196
                 $thruSegments = explode('.', $thruRaw);
197
-                $thruName = $thruSegments[count($thruSegments) - 1];
197
+                $thruName = $thruSegments[count($thruSegments)-1];
198 198
             }
199 199
             $first = $keyName;
200 200
             $last = $localName;
@@ -226,10 +226,10 @@  discard block
 block discarded – undo
226 226
 
227 227
             $keyName = $isBelong ? $foo->$fkMethodName() : $foo->$fkMethodAlternate();
228 228
             $keySegments = explode('.', $keyName);
229
-            $keyName = $keySegments[count($keySegments) - 1];
229
+            $keyName = $keySegments[count($keySegments)-1];
230 230
             $localRaw = $isBelong ? $foo->$rkMethodName() : $foo->$rkMethodAlternate();
231 231
             $localSegments = explode('.', $localRaw);
232
-            $localName = $localSegments[count($localSegments) - 1];
232
+            $localName = $localSegments[count($localSegments)-1];
233 233
             $first = $isBelong ? $localName : $keyName;
234 234
             $last = $isBelong ? $keyName : $localName;
235 235
             $this->addRelationsHook($hooks, $first, $property, $last, $mult, $targ);
@@ -258,10 +258,10 @@  discard block
 block discarded – undo
258 258
 
259 259
             $keyRaw = $isMany ? $foo->$fkMethodName() : $foo->$fkMethodAlternate();
260 260
             $keySegments = explode('.', $keyRaw);
261
-            $keyName = $keySegments[count($keySegments) - 1];
261
+            $keyName = $keySegments[count($keySegments)-1];
262 262
             $localRaw = $isMany ? $foo->$rkMethodName() : $foo->$rkMethodAlternate();
263 263
             $localSegments = explode('.', $localRaw);
264
-            $localName = $localSegments[count($localSegments) - 1];
264
+            $localName = $localSegments[count($localSegments)-1];
265 265
             $first = $isMany ? $keyName : $localName;
266 266
             $last = $isMany ? $localName : $keyName;
267 267
             $this->addRelationsHook($hooks, $first, $property, $last, $mult, $targ, 'unknown');
@@ -289,10 +289,10 @@  discard block
 block discarded – undo
289 289
 
290 290
             $keyRaw = $isMany ? $foo->$fkMethodName() : $foo->$fkMethodAlternate();
291 291
             $keySegments = explode('.', $keyRaw);
292
-            $keyName = $keySegments[count($keySegments) - 1];
292
+            $keyName = $keySegments[count($keySegments)-1];
293 293
             $localRaw = $isMany ? $foo->$rkMethodName() : $foo->$rkMethodAlternate();
294 294
             $localSegments = explode('.', $localRaw);
295
-            $localName = $localSegments[count($localSegments) - 1];
295
+            $localName = $localSegments[count($localSegments)-1];
296 296
 
297 297
             $first = $keyName;
298 298
             $last = (isset($localName) && '' != $localName) ? $localName : $foo->getRelated()->getKeyName();
Please login to merge, or discard this patch.
src/Models/MetadataKeyMethodNamesTrait.php 1 patch
Spacing   +5 added lines, -6 removed lines patch added patch discarded remove patch
@@ -26,8 +26,7 @@  discard block
 block discarded – undo
26 26
     protected function getRelationsHasManyKeyNames(Relation $foo)
27 27
     {
28 28
         $thruName = $foo instanceof HasManyThrough ?
29
-            $this->polyglotThroughKeyMethodNames($foo) :
30
-            null;
29
+            $this->polyglotThroughKeyMethodNames($foo) : null;
31 30
         list($fkMethodName, $rkMethodName) = $this->polyglotKeyMethodNames($foo);
32 31
         return [$thruName, $fkMethodName, $rkMethodName];
33 32
     }
@@ -49,13 +48,13 @@  discard block
 block discarded – undo
49 48
         }elseif ($foo instanceof BelongsToMany) {
50 49
             $fkList = ['getForeignPivotKeyName'];
51 50
             $rkList = ['getRelatedPivotKeyName'];
52
-        }elseif($foo instanceof HasOneOrMany){
51
+        }elseif ($foo instanceof HasOneOrMany) {
53 52
             $fkList = ['getForeignKeyName'];
54 53
             $rkList = ['getLocalKeyName'];
55
-        }elseif($foo instanceof HasManyThrough) {
54
+        }elseif ($foo instanceof HasManyThrough) {
56 55
             $fkList = ['getQualifiedFarKeyName'];
57 56
             $rkList = ['getQualifiedParentKeyName'];
58
-        }else{
57
+        } else {
59 58
             $msg = sprintf('Unknown Relationship Type %s', get_class($foo));
60 59
             throw new InvalidOperationException($msg);
61 60
         }
@@ -107,6 +106,6 @@  discard block
 block discarded – undo
107 106
             }
108 107
         }
109 108
         $msg = 'Expected at least 1 element in related-key list, got 0 for relation %s';
110
-        throw new InvalidOperationException(sprintf($msg,get_class($foo)));
109
+        throw new InvalidOperationException(sprintf($msg, get_class($foo)));
111 110
     }
112 111
 }
Please login to merge, or discard this patch.