Test Failed
Push — master ( 8b4c91...55dd44 )
by Kirill
02:18
created
src/Stdlib/Scalar/DateTimeScalar.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -50,11 +50,11 @@  discard block
 block discarded – undo
50 50
             return $value;
51 51
         }
52 52
 
53
-        if (! \is_scalar($value)) {
53
+        if (!\is_scalar($value)) {
54 54
             throw new TypeConflictException(\sprintf('Could not parse %s type', \gettype($value)));
55 55
         }
56 56
 
57
-        return $this->parseDateTime((string)parent::parse($value));
57
+        return $this->parseDateTime((string) parent::parse($value));
58 58
     }
59 59
 
60 60
     /**
@@ -68,11 +68,11 @@  discard block
 block discarded – undo
68 68
             return $value->format(\DateTime::RFC3339);
69 69
         }
70 70
 
71
-        if (! \is_scalar($value)) {
71
+        if (!\is_scalar($value)) {
72 72
             throw new TypeConflictException(\sprintf('Could not serialize %s type', \gettype($value)));
73 73
         }
74 74
 
75
-        return $this->parseDateTime((string)$value)
75
+        return $this->parseDateTime((string) $value)
76 76
             ->format(\DateTime::RFC3339);
77 77
     }
78 78
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     private function parseDateTime(string $value): \DateTimeInterface
85 85
     {
86 86
         try {
87
-            return new \DateTime((string)$value, new \DateTimeZone('UTC'));
87
+            return new \DateTime((string) $value, new \DateTimeZone('UTC'));
88 88
         } catch (\Throwable $e) {
89 89
             $message = \str_replace('DateTime::__construct(): ', '', $e->getMessage());
90 90
 
Please login to merge, or discard this patch.
src/Stdlib/Scalar/StringScalar.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -46,11 +46,11 @@  discard block
 block discarded – undo
46 46
      */
47 47
     public function parse($value): string
48 48
     {
49
-        if (! \is_scalar($value)) {
49
+        if (!\is_scalar($value)) {
50 50
             throw new TypeConflictException(\sprintf('Could not parse %s type', \gettype($value)));
51 51
         }
52 52
 
53
-        return (string)$value;
53
+        return (string) $value;
54 54
     }
55 55
 
56 56
     /**
@@ -60,11 +60,11 @@  discard block
 block discarded – undo
60 60
      */
61 61
     public function serialize($value): string
62 62
     {
63
-        if (! \is_scalar($value)) {
63
+        if (!\is_scalar($value)) {
64 64
             throw new TypeConflictException(\sprintf('Could not serialize %s type', \gettype($value)));
65 65
         }
66 66
 
67
-        return (string)$value;
67
+        return (string) $value;
68 68
     }
69 69
 
70 70
     /**
Please login to merge, or discard this patch.