Passed
Pull Request — master (#157)
by Alex
02:52
created
src/Util/UnmanagedByteArray.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      */
40 40
     public function offsetExists($offset)
41 41
     {
42
-        return is_int($offset) && 0 <= $offset  && $offset < $this->length;
42
+        return is_int($offset) && 0 <= $offset && $offset < $this->length;
43 43
     }
44 44
 
45 45
     /**
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
      */
60 60
     public function offsetSet($offset, $value)
61 61
     {
62
-        if (!is_int($value) || $value <0 || $value > 255) {
62
+        if (!is_int($value) || $value < 0 || $value > 255) {
63 63
             throw new \InvalidArgumentException(sprintf('%s is an invalid value for a ByteArray', $value));
64 64
         }
65 65
         if ($this->readonly) {
Please login to merge, or discard this patch.
src/Util/ExpressionTypeChecker.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
                 // If we don't have the applied function we just assume that it will work.
200 200
                 $discoveredErrors = [];
201 201
                 return true;
202
-            case ExpressionKind::If():
202
+            case ExpressionKind::If ():
203 203
                 assert($expression instanceof IIfExpression);
204 204
                 return self::TryAssertIfAsType($expression, $type, $context, $matchExactly, $discoveredErrors);
205 205
             case ExpressionKind::IsType():
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
         iterable &$discoveredErrors
298 298
     ): bool {
299 299
         if (!$type->IsPrimitive()) {
300
-            $discoveredErrors =  [
300
+            $discoveredErrors = [
301 301
                 new EdmError(
302 302
                     $expression->Location(),
303 303
                     EdmErrorCode::PrimitiveConstantExpressionNotValidForNonPrimitiveType(),
@@ -757,7 +757,7 @@  discard block
 block discarded – undo
757 757
                 return self::TryAssertIntegerConstantInRange(
758 758
                     $expression,
759 759
                     (int)-9223372036854775808,
760
-                    (int)999999999999,
760
+                    (int) 999999999999,
761 761
                     $discoveredErrors
762 762
                 );
763 763
             case PrimitiveTypeKind::Int32():
@@ -789,7 +789,7 @@  discard block
 block discarded – undo
789 789
                     $discoveredErrors
790 790
                 );
791 791
             default:
792
-                $discoveredErrors =  [
792
+                $discoveredErrors = [
793 793
                     new EdmError(
794 794
                         $expression->Location(),
795 795
                         EdmErrorCode::ExpressionPrimitiveKindNotValidForAssertedType(),
@@ -909,7 +909,7 @@  discard block
 block discarded – undo
909 909
 
910 910
             if ($expressionType->getTypeKind()->isPrimitive() && $assertedType->getTypeKind()->isPrimitive()) {
911 911
                 $primitiveExpressionType = $expressionType;
912
-                $primitiveAssertedType   = $assertedType ;
912
+                $primitiveAssertedType   = $assertedType;
913 913
                 assert($primitiveExpressionType instanceof IPrimitiveType);
914 914
                 assert($primitiveAssertedType instanceof IPrimitiveType);
915 915
                 if (!self::PromotesTo(
Please login to merge, or discard this patch.
src/Util/XmlCharType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -330,9 +330,9 @@
 block discarded – undo
330 330
     private static function SetProperties(string $ranges, int $value): void
331 331
     {
332 332
         assert(mb_strlen($ranges, 'UTF-8') % 2 === 0);
333
-        for ($p = 0; $p < mb_strlen($ranges, 'UTF-8'); $p +=2) {
333
+        for ($p = 0; $p < mb_strlen($ranges, 'UTF-8'); $p += 2) {
334 334
             $str1 = mb_substr($ranges, $p, 1, 'UTF-8');
335
-            $str2 = mb_substr($ranges, $p+1, 1, 'UTF-8');
335
+            $str2 = mb_substr($ranges, $p + 1, 1, 'UTF-8');
336 336
             for ($i = mb_ord($str1),
337 337
                  $last = mb_ord($str2); $i <= $last; $i++) {
338 338
                 if (!isset(self::$s_CharProperties[$i])) {
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/IBinaryValue.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 string[] gets the definition of this binary value
19 19
      */
20
-    public function getValue(): array ;
20
+    public function getValue(): array;
21 21
 }
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/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/Helpers/ToTraceString.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
             case $element instanceof IProperty:
50 50
                 assert($element instanceof IProperty);
51 51
                 $type = $element->getType();
52
-                return $element->getName() ?? '' . ':' . ($type !== null ? self::ToTraceString($type) :'');
52
+                return $element->getName() ?? '' . ':' . ($type !== null ? self::ToTraceString($type) : '');
53 53
             case $element instanceof IEntityReferenceType:
54 54
                 assert($element instanceof IEntityReferenceType);
55 55
                 return TypeKind::EntityReference()->getKey() . '(' . ($element->getEntityType() !== null ? self::ToTraceString($element->getEntityType()) : '') . ')';
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
             $sb,
171 171
             EdmConstants::FacetName_Srid,
172 172
             null !== $type->getSpatialReferenceIdentifier()
173
-                ? $type->getSpatialReferenceIdentifier(): EdmConstants::Value_SridVariable
173
+                ? $type->getSpatialReferenceIdentifier() : EdmConstants::Value_SridVariable
174 174
         );
175 175
         return $sb;
176 176
     }
Please login to merge, or discard this patch.