Passed
Push — develop ( ce2674...fc48fc )
by Paul
01:57
created
src/Annotation/GetterAnnotation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
             } catch (JsonException $exception) {
44 44
                 throw new AnnotationParseException('"getter" annotation content is invalid (invalid JSON content)');
45 45
             }
46
-            if (! is_string($decoded)) {
46
+            if (!is_string($decoded)) {
47 47
                 throw new AnnotationParseException(
48 48
                     '"getter" annotation content is invalid (property name must be a string)'
49 49
                 );
Please login to merge, or discard this patch.
src/Annotation/SetterAnnotation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
             } catch (JsonException $exception) {
44 44
                 throw new AnnotationParseException('"getter" annotation content is invalid (invalid JSON content)');
45 45
             }
46
-            if (! is_string($decoded)) {
46
+            if (!is_string($decoded)) {
47 47
                 throw new AnnotationParseException(
48 48
                     '"getter" annotation content is invalid (property name must be a string)'
49 49
                 );
Please login to merge, or discard this patch.