@@ -34,13 +34,13 @@ |
||
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 |