Completed
Push — master ( 9dec22...41f187 )
by Bálint
02:44
created
src/POData/ObjectModel/ObjectModelSerializerBase.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,9 @@
 block discarded – undo
128 128
         $comma = null;
129 129
         foreach ($keyProperties as $keyName => $resourceProperty) {
130 130
             $keyType = $resourceProperty->getInstanceType();
131
-            if (!$keyType instanceof IType) continue;
131
+            if (!$keyType instanceof IType) {
132
+                continue;
133
+            }
132 134
             // $this->assert($keyType instanceof IType, '$keyType instanceof IType');
133 135
 
134 136
             $keyValue = $this->getPropertyValue($entityInstance, $resourceType, $resourceProperty);
Please login to merge, or discard this patch.