Passed
Pull Request — master (#44)
by Alex
03:41
created
src/Csdl/Internal/Serialization/Helpers/AssociationAnnotations.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,11 +12,11 @@  discard block
 block discarded – undo
12 12
     /**
13 13
      * @var IDirectValueAnnotation
14 14
      */
15
-    public $Annotations ;
15
+    public $Annotations;
16 16
     /**
17 17
      * @var IDirectValueAnnotation
18 18
      */
19
-    public $End1Annotations ;
19
+    public $End1Annotations;
20 20
     /**
21 21
      * @var IDirectValueAnnotation
22 22
      */
@@ -24,5 +24,5 @@  discard block
 block discarded – undo
24 24
     /**
25 25
      * @var IDirectValueAnnotation
26 26
      */
27
-    public $ConstraintAnnotations ;
27
+    public $ConstraintAnnotations;
28 28
 }
Please login to merge, or discard this patch.
src/Csdl/Internal/Serialization/EdmModelCsdlSerializationVisitor.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1293,7 +1293,7 @@  discard block
 block discarded – undo
1293 1293
 
1294 1294
         // Association Set
1295 1295
         if (!($this->model->GetAssociationSetName($thisEntitySet, $thisNavprop) ==
1296
-              $this->model->GetAssociationSetName($thatEntitySet, $thatNavprop) &&
1296
+                $this->model->GetAssociationSetName($thatEntitySet, $thatNavprop) &&
1297 1297
             $this->model->GetAssociationFullName($thisNavprop) == $this->model->GetAssociationFullName($thatNavprop))) {
1298 1298
             return false;
1299 1299
         }
@@ -1318,7 +1318,7 @@  discard block
 block discarded – undo
1318 1318
             }
1319 1319
 
1320 1320
             if (!($this->model->GetAssociationEndName($thisNavprop->getPartner()) ==
1321
-                  $this->model->GetAssociationEndName($thatNavprop->getPartner()) &&
1321
+                    $this->model->GetAssociationEndName($thatNavprop->getPartner()) &&
1322 1322
                 $thisOtherEntitySet->getName() == $thatOtherEntitySet->getName())) {
1323 1323
                 return false;
1324 1324
             }
Please login to merge, or discard this patch.
Spacing   +9 added lines, -10 removed lines patch added patch discarded remove patch
@@ -131,8 +131,7 @@  discard block
 block discarded – undo
131 131
         $alias = null;
132 132
         if ($this->namespaceAliasMappings != null) {
133 133
             $alias = array_key_exists($element->getNamespace(), $this->namespaceAliasMappings) ?
134
-                $this->namespaceAliasMappings[$element->getNamespace()] :
135
-                null;
134
+                $this->namespaceAliasMappings[$element->getNamespace()] : null;
136 135
         }
137 136
 
138 137
         $this->schemaWriter->WriteSchemaElementHeader($element, $alias, $mappings);
@@ -602,7 +601,7 @@  discard block
 block discarded – undo
602 601
     protected function ProcessPropertyReferenceExpression(IPropertyReferenceExpression $expression): void
603 602
     {
604 603
         $this->BeginElement($expression, [$this->schemaWriter, 'WritePropertyReferenceExpressionElementHeader']);
605
-        if ($expression->getBase()!= null) {
604
+        if ($expression->getBase() != null) {
606 605
             $this->VisitExpression($expression->getBase());
607 606
         }
608 607
 
@@ -933,7 +932,7 @@  discard block
 block discarded – undo
933 932
         /**
934 933
          * @var IDirectValueAnnotation[] $end2Annotations
935 934
          */
936
-        $end2Annotations =[];
935
+        $end2Annotations = [];
937 936
         $this->model->GetAssociationSetAnnotations(
938 937
             $entitySet,
939 938
             $property,
@@ -1208,10 +1207,10 @@  discard block
 block discarded – undo
1208 1207
             return false;
1209 1208
         }
1210 1209
 
1211
-        $thisAssociationAnnotations =[];
1210
+        $thisAssociationAnnotations = [];
1212 1211
         $thisEnd1Annotations        = [];
1213
-        $thisEnd2Annotations        =[];
1214
-        $thisConstraintAnnotations  =[];
1212
+        $thisEnd2Annotations        = [];
1213
+        $thisConstraintAnnotations  = [];
1215 1214
         $this->model->GetAssociationAnnotations(
1216 1215
             $thisPrimary,
1217 1216
             $thisAssociationAnnotations,
@@ -1223,7 +1222,7 @@  discard block
 block discarded – undo
1223 1222
         $thatAssociationAnnotations = [];
1224 1223
         $thatEnd1Annotations        = [];
1225 1224
         $thatEnd2Annotations        = [];
1226
-        $thatConstraintAnnotations  =[];
1225
+        $thatConstraintAnnotations  = [];
1227 1226
         $this->model->GetAssociationAnnotations(
1228 1227
             $thatPrimary,
1229 1228
             $thatAssociationAnnotations,
@@ -1337,8 +1336,8 @@  discard block
 block discarded – undo
1337 1336
         );
1338 1337
 
1339 1338
         $thatAssociationSetAnnotations = [];
1340
-        $thatEnd1Annotations           =[];
1341
-        $thatEnd2Annotations           =[];
1339
+        $thatEnd1Annotations           = [];
1340
+        $thatEnd2Annotations           = [];
1342 1341
         $this->model->GetAssociationSetAnnotations(
1343 1342
             $thatEntitySet,
1344 1343
             $thatNavprop,
Please login to merge, or discard this patch.
src/Csdl/EdmxWriter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,8 +91,8 @@
 block discarded – undo
91 91
                 $errors = [new EdmError(new CsdlLocation(0, 0), EdmErrorCode::UnknownEdmxVersion(), StringConst::Serializer_UnknownEdmxVersion())];
92 92
                 return false;
93 93
             }
94
-        } elseif (! $edmxVersion = CsdlConstants::EdmToEdmxVersions($model->GetEdmVersion() ?? Version::v3())) {
95
-            $errors = [new EdmError(new CsdlLocation(0, 0), EdmErrorCode::UnknownEdmVersion(), StringConst::Serializer_UnknownEdmVersion()) ];
94
+        } elseif (!$edmxVersion = CsdlConstants::EdmToEdmxVersions($model->GetEdmVersion() ?? Version::v3())) {
95
+            $errors = [new EdmError(new CsdlLocation(0, 0), EdmErrorCode::UnknownEdmVersion(), StringConst::Serializer_UnknownEdmVersion())];
96 96
             return false;
97 97
         }
98 98
 
Please login to merge, or discard this patch.
src/Helpers/PrimitiveTypeReferenceHelpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,6 +38,6 @@
 block discarded – undo
38 38
     public function PrimitiveKind(): PrimitiveTypeKind
39 39
     {
40 40
         $primitive = $this->PrimitiveDefinition();
41
-        return $primitive !== null ? $primitive->getPrimitiveKind(): PrimitiveTypeKind::None();
41
+        return $primitive !== null ? $primitive->getPrimitiveKind() : PrimitiveTypeKind::None();
42 42
     }
43 43
 }
Please login to merge, or discard this patch.
src/EdmModelVisitor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
     protected function endElement(IEdmElement $element, string $method): void
117 117
     {
118 118
         $method       = $this->sanitizeMethodName($method);
119
-        $elementClone =  $this->cloneElementContainer->offsetGet($element);
119
+        $elementClone = $this->cloneElementContainer->offsetGet($element);
120 120
         foreach ($this->visitors as $visitor) {
121 121
             $visitor->{'end' . $method}($elementClone);
122 122
         }
Please login to merge, or discard this patch.
src/Internal/RegistrationHelper.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     ) {
48 48
         $qualifiedName = $element->FullName();
49 49
         switch ($element->getSchemaElementKind()) {
50
-            case SchemaElementKind::Function():
50
+            case SchemaElementKind::Function ():
51 51
                 assert($element instanceof IFunction);
52 52
                 self::AddFunction($element, $qualifiedName, $functionGroupDictionary);
53 53
                 break;
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     ) {
48 48
         $qualifiedName = $element->FullName();
49 49
         switch ($element->getSchemaElementKind()) {
50
-            case SchemaElementKind::Function():
50
+            case SchemaElementKind::function():
51 51
                 assert($element instanceof IFunction);
52 52
                 self::AddFunction($element, $qualifiedName, $functionGroupDictionary);
53 53
                 break;
Please login to merge, or discard this patch.
Internal/InterfaceValidator/VisitorOfIParameterReferenceExpression.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
             $references[] = $expression->getReferencedParameter();
18 18
             return null;
19 19
         } else {
20
-            return [ InterfaceValidator::CreatePropertyMustNotBeNullError($expression, 'ReferencedParameter') ];
20
+            return [InterfaceValidator::CreatePropertyMustNotBeNullError($expression, 'ReferencedParameter')];
21 21
         }
22 22
     }
23 23
 
Please login to merge, or discard this patch.
src/Edm/Validation/Internal/InterfaceValidator/VisitorOfIValue.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@
 block discarded – undo
155 155
                 );
156 156
                 break;
157 157
 
158
-            case ValueKind::Null():
158
+            case ValueKind::null():
159 159
                 InterfaceValidator::CollectErrors(
160 160
                     InterfaceValidator::CheckForInterfaceKindValueMismatchError(
161 161
                         $value,
Please login to merge, or discard this patch.
Internal/InterfaceValidator/VisitorOfIEnumMemberReferenceExpression.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
             $references[] = $expression->getReferencedEnumMember();
18 18
             return null;
19 19
         } else {
20
-            return [ InterfaceValidator::CreatePropertyMustNotBeNullError($expression, 'ReferencedEnumMember') ];
20
+            return [InterfaceValidator::CreatePropertyMustNotBeNullError($expression, 'ReferencedEnumMember')];
21 21
         }
22 22
     }
23 23
 
Please login to merge, or discard this patch.