Passed
Pull Request — master (#66)
by Alex
03:07
created
src/Interfaces/Values/IDateTimeValue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,5 +19,5 @@
 block discarded – undo
19 19
     /**
20 20
      * @return DateTime gets the definition of this datetime value
21 21
      */
22
-    public function getValue(): DateTime ;
22
+    public function getValue(): DateTime;
23 23
 }
Please login to merge, or discard this patch.
src/Interfaces/Values/IFloatingValue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,5 +17,5 @@
 block discarded – undo
17 17
     /**
18 18
      * @return float gets the definition of this floating   value
19 19
      */
20
-    public function getValue(): float ;
20
+    public function getValue(): float;
21 21
 }
Please login to merge, or discard this patch.
src/Interfaces/Values/IDecimalValue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,5 +17,5 @@
 block discarded – undo
17 17
     /**
18 18
      * @return float gets the definition of this decimal  value
19 19
      */
20
-    public function getValue(): float ;
20
+    public function getValue(): float;
21 21
 }
Please login to merge, or discard this patch.
src/Edm/Validation/Internal/ValidationHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
         if (count($set1) != count($set2)) {
97 97
             return false;
98 98
         }
99
-        for ($i = count($set1) -1; $i > -1; --$i) {
99
+        for ($i = count($set1) - 1; $i > -1; --$i) {
100 100
             if ($set1[$i] !== $set2[$i]) {
101 101
                 return false;
102 102
             }
Please login to merge, or discard this patch.
src/Csdl/Internal/Serialization/Helpers/AssociationSetAnnotations.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,5 +11,5 @@
 block discarded – undo
11 11
 
12 12
     public $End1Annotations;
13 13
 
14
-    public $End2Annotations ;
14
+    public $End2Annotations;
15 15
 }
Please login to merge, or discard this patch.
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/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/Edm/Validation/ValidationRules/IPrimitiveValue/PrimitiveValueRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,6 +12,6 @@
 block discarded – undo
12 12
 {
13 13
     public function getValidatedType(): string
14 14
     {
15
-        return IPrimitiveValue::class ;
15
+        return IPrimitiveValue::class;
16 16
     }
17 17
 }
Please login to merge, or discard this patch.
src/Csdl/Internal/Semantics/BadElements/UnresolvedFunction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
      */
49 49
     public function getSchemaElementKind(): SchemaElementKind
50 50
     {
51
-        return SchemaElementKind::Function();
51
+        return SchemaElementKind::Function ();
52 52
     }
53 53
 
54 54
     /**
Please login to merge, or discard this patch.