Passed
Pull Request — master (#44)
by Alex
02:51
created
src/Library/EdmProperty.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     /**
28 28
      * @var array<IDependent>
29 29
      */
30
-    protected $dependents =[];
30
+    protected $dependents = [];
31 31
     /**
32 32
      * @var ITypeReference
33 33
      */
Please login to merge, or discard this patch.
src/Library/EdmModelBase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
                 return [$element];
133 133
             }
134 134
 
135
-            return $element ;
135
+            return $element;
136 136
         }
137 137
 
138 138
         return [];
Please login to merge, or discard this patch.
src/ModelVisitorConcerns/VisitExpressions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
                 assert($expression instanceof  IGuidConstantExpression);
105 105
                 $this->processGuidConstantExpression($expression);
106 106
                 break;
107
-            case ExpressionKind::If():
107
+            case ExpressionKind::If ():
108 108
                 assert($expression instanceof  IIfExpression);
109 109
                 $this->processIfExpression($expression);
110 110
                 break;
Please login to merge, or discard this patch.
src/Enums/ValueKind.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -29,19 +29,19 @@
 block discarded – undo
29 29
  */
30 30
 class ValueKind extends Enum
31 31
 {
32
-    protected const None          =0;
32
+    protected const None          = 0;
33 33
     protected const Binary        = 1;
34
-    protected const Boolean       =2;
35
-    protected const Collection    =3;
36
-    protected const DateTimeOffset=4;
37
-    protected const DateTime      =5;
38
-    protected const Decimal       =6;
39
-    protected const Enum          =7;
40
-    protected const Floating      =8;
41
-    protected const Guid          =9;
42
-    protected const Integer       =10;
43
-    protected const Null          =11;
44
-    protected const String        =12;
45
-    protected const Structured    =13;
46
-    protected const Time          =14;
34
+    protected const Boolean       = 2;
35
+    protected const Collection    = 3;
36
+    protected const DateTimeOffset = 4;
37
+    protected const DateTime      = 5;
38
+    protected const Decimal       = 6;
39
+    protected const Enum          = 7;
40
+    protected const Floating      = 8;
41
+    protected const Guid          = 9;
42
+    protected const Integer       = 10;
43
+    protected const Null          = 11;
44
+    protected const String        = 12;
45
+    protected const Structured    = 13;
46
+    protected const Time          = 14;
47 47
 }
Please login to merge, or discard this patch.
src/Enums/Enum.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
         $regexBase = '/(is)(%s)/m';
25 25
         $regexFull = sprintf($regexBase, implode('$|', array_keys($array)));
26 26
         preg_match($regexFull, $name, $match);
27
-        if (count($match)>0 && $match[0] === $name) {
27
+        if (count($match) > 0 && $match[0] === $name) {
28 28
             return $this->{$match[1] . 'Flag'}($array[$match[2]], $arguments[0] ?? null);
29 29
         }
30 30
         throw new BadMethodCallException(sprintf('Enum %s not found on %s', $name, get_class($this)));
Please login to merge, or discard this patch.
src/Interfaces/Values/IBooleanValue.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 bool gets a value indicating whether the value of this boolean value is true or false
19 19
      */
20
-    public function getValue(): bool ;
20
+    public function getValue(): bool;
21 21
 }
Please login to merge, or discard this patch.
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.