Test Setup Failed
Branch master (cb4886)
by Vinicius
03:02
created
Category
src/Annotations.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,13 +34,13 @@
 block discarded – undo
34 34
         $annotations = [];
35 35
         preg_match_all('/@var\s*([^\s]+)/i', $docblock, $annotations, PREG_SET_ORDER);
36 36
 
37
-        if (empty($annotations) || ! isset($annotations[0][1])) {
37
+        if (empty($annotations) || !isset($annotations[0][1])) {
38 38
             throw new AnnotationNotFound;
39 39
         }
40 40
 
41 41
         $type = strtolower($annotations[0][1]);
42 42
 
43
-        if (! in_array($type, self::AVAILABLE_TYPES)) {
43
+        if (!in_array($type, self::AVAILABLE_TYPES)) {
44 44
             throw new InvalidAttributeType;
45 45
         }
46 46
 
Please login to merge, or discard this patch.