Passed
Pull Request — master (#156)
by Alex
04:51
created
src/Library/Internal/Cyclic/CyclicComplexType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,6 +25,6 @@
 block discarded – undo
25 25
      */
26 26
     public function __construct(?string $qualifiedName, ILocation $location)
27 27
     {
28
-        parent::__construct($qualifiedName, [new EdmError($location, EdmErrorCode::BadCyclicComplex(), StringConst::Bad_CyclicComplex($qualifiedName)) ]);
28
+        parent::__construct($qualifiedName, [new EdmError($location, EdmErrorCode::BadCyclicComplex(), StringConst::Bad_CyclicComplex($qualifiedName))]);
29 29
     }
30 30
 }
Please login to merge, or discard this patch.
src/Library/Internal/Cyclic/CyclicEntityType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,6 +20,6 @@
 block discarded – undo
20 20
 {
21 21
     public function __construct(?string $qualifiedName, ILocation $location)
22 22
     {
23
-        parent::__construct($qualifiedName, [new EdmError($location, EdmErrorCode::BadCyclicEntity(), StringConst::Bad_CyclicEntity($qualifiedName)) ]);
23
+        parent::__construct($qualifiedName, [new EdmError($location, EdmErrorCode::BadCyclicEntity(), StringConst::Bad_CyclicEntity($qualifiedName))]);
24 24
     }
25 25
 }
Please login to merge, or discard this patch.
src/Library/EdmModel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
     /**
34 34
      * @var SplObjectStorage|array<IStructuredType, IStructuredType[]>
35 35
      */
36
-    private $derivedTypeMappings ;
36
+    private $derivedTypeMappings;
37 37
     public function __construct(array $referencedModels = [], EdmDirectValueAnnotationsManager $annotationsManager = null)
38 38
     {
39 39
         $annotationsManager = $annotationsManager ?? new EdmDirectValueAnnotationsManager();
Please login to merge, or discard this patch.
src/Library/EdmFunctionImport.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
      */
37 37
     private $isBindable;
38 38
 
39
-    public function __construct(IEntityContainer $container, string $name, ?ITypeReference $returnType, IExpression $entitySet = null, bool $isSideEffecting = true, bool $isComposable = false, bool $isBindable= false)
39
+    public function __construct(IEntityContainer $container, string $name, ?ITypeReference $returnType, IExpression $entitySet = null, bool $isSideEffecting = true, bool $isComposable = false, bool $isBindable = false)
40 40
     {
41 41
         parent::__construct($name, $returnType);
42 42
         $this->container       = $container;
Please login to merge, or discard this patch.
src/Library/EdmValueTerm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public function __construct(string $namespaceName, string $name, $type)
39 39
     {
40
-        $type = ($type instanceof PrimitiveTypeKind) ? EdmCoreModel::getInstance()->GetPrimitive($type, true): $type;
40
+        $type = ($type instanceof PrimitiveTypeKind) ? EdmCoreModel::getInstance()->GetPrimitive($type, true) : $type;
41 41
         assert($type instanceof ITypeReference);
42 42
         parent::__construct($name);
43 43
         $this->type          = $type;
Please login to merge, or discard this patch.
src/Library/Annotations/EdmDirectValueAnnotationsManager.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -293,8 +293,7 @@
 block discarded – undo
293 293
         }
294 294
 
295 295
         $newAnnotation = $value != null ?
296
-            new EdmDirectValueAnnotation($namespaceName, $localName, $value) :
297
-            new EdmDirectValueAnnotation($namespaceName, $localName);
296
+            new EdmDirectValueAnnotation($namespaceName, $localName, $value) : new EdmDirectValueAnnotation($namespaceName, $localName);
298 297
 
299 298
         if ($transientAnnotations == null) {
300 299
             $transientAnnotations = $newAnnotation;
Please login to merge, or discard this patch.
src/Library/Values/EdmNullExpression.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function getExpressionKind(): ExpressionKind
44 44
     {
45
-        return ExpressionKind::Null();
45
+        return ExpressionKind::null();
46 46
     }
47 47
 
48 48
     /**
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      */
51 51
     public function getValueKind(): ValueKind
52 52
     {
53
-        return ValueKind::Null();
53
+        return ValueKind::null();
54 54
     }
55 55
 
56 56
     /**
Please login to merge, or discard this patch.
src/Library/Values/EdmEnumValue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     public function __construct($value, ?IEnumTypeReference $type = null)
25 25
     {
26 26
         parent::__construct($type);
27
-        $value = $value instanceof IEnumMember ? $value->getValue(): $value;
27
+        $value = $value instanceof IEnumMember ? $value->getValue() : $value;
28 28
         assert($value instanceof IPrimitiveValue);
29 29
         $this->value = $value;
30 30
     }
Please login to merge, or discard this patch.
src/Library/EdmBinaryTypeReference.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     public function __construct(IPrimitiveType $definition, bool $isNullable, bool $isUnbounded = false, ?int $maxLength = null, ?bool $isFixedLength = null)
40 40
     {
41 41
         parent::__construct($definition, $isNullable);
42
-        $this->isUnbounded   =$isUnbounded;
42
+        $this->isUnbounded   = $isUnbounded;
43 43
         $this->maxLength     = $maxLength;
44 44
         $this->isFixedLength = $isFixedLength;
45 45
     }
Please login to merge, or discard this patch.