Passed
Pull Request — master (#34)
by Anatoly
01:58
created
src/Annotation/OpenApi/AbstractReference.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
             $this->getAnnotationName()
106 106
         );
107 107
 
108
-        $this->referencedObject =& self::$cache[$key];
108
+        $this->referencedObject = & self::$cache[$key];
109 109
 
110 110
         if (isset(self::$cache[$key])) {
111 111
             return self::$cache[$key];
Please login to merge, or discard this patch.
src/Annotation/OpenApi/AbstractAnnotation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         $fields = $this->getFields();
43 43
         $objects = [];
44 44
 
45
-        array_walk_recursive($fields, function ($value) use ($annotationReader, &$objects) {
45
+        array_walk_recursive($fields, function($value) use ($annotationReader, &$objects) {
46 46
             if ($value instanceof AbstractAnnotation) {
47 47
                 $objects = array_merge($objects, $value->getReferencedObjects($annotationReader));
48 48
             } elseif ($value instanceof AbstractReference) {
Please login to merge, or discard this patch.