Passed
Branch master (f1e462)
by Divine Niiquaye
02:07
created
src/AnnotationLoader.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
         $annotations = [];
184 184
 
185 185
         if (null === $this->reader) {
186
-            return \array_map(static function (\ReflectionAttribute $attribute): object {
186
+            return \array_map(static function(\ReflectionAttribute $attribute): object {
187 187
                 return $attribute->newInstance();
188 188
             }, $reflection->getAttributes($annotation));
189 189
         }
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
 
225 225
                 if ($method instanceof Locate\Method) {
226 226
                     $classAnnotation->methods[] = $method;
227
-                    ++$classRefCount;
227
+                    ++ $classRefCount;
228 228
                 }
229 229
 
230 230
                 continue;
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
             if ([] === $annotations) {
234 234
                 continue;
235 235
             }
236
-            ++$classRefCount;
236
+            ++ $classRefCount;
237 237
 
238 238
             if ($reflection instanceof \ReflectionProperty) {
239 239
                 $classAnnotation->properties[] = new Locate\Property($annotations, $reflection);
Please login to merge, or discard this patch.