@@ -49,7 +49,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |