Passed
Pull Request — master (#1401)
by
unknown
11:14
created
src/JsonDeserializationStrictVisitor.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
             return null;
50 50
         }
51 51
 
52
-        if (! is_string($data)) {
52
+        if ( ! is_string($data)) {
53 53
             throw NonVisitableTypeException::fromDataAndType($data, $type);
54 54
         }
55 55
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
             return null;
66 66
         }
67 67
 
68
-        if (! is_bool($data)) {
68
+        if ( ! is_bool($data)) {
69 69
             throw NonVisitableTypeException::fromDataAndType($data, $type);
70 70
         }
71 71
 
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
             return null;
82 82
         }
83 83
 
84
-        if (! is_int($data)) {
84
+        if ( ! is_int($data)) {
85 85
             throw NonVisitableTypeException::fromDataAndType($data, $type);
86 86
         }
87 87
 
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
             return null;
98 98
         }
99 99
 
100
-        if (! is_float($data)) {
100
+        if ( ! is_float($data)) {
101 101
             throw NonVisitableTypeException::fromDataAndType($data, $type);
102 102
         }
103 103
 
Please login to merge, or discard this patch.