Browse Source

Restore test case

Julien Falque 7 years ago
parent
commit
1636e3e8f3

+ 12 - 2
tests/Fixer/DoctrineAnnotation/DoctrineAnnotationIndentationFixerTest.php

@@ -314,6 +314,17 @@ final class DoctrineAnnotationIndentationFixerTest extends AbstractDoctrineAnnot
  *     @FIXME
  *     @fixme
  *     @override
+ */'],
+            ['
+/**
+ * @Foo({
+ * @Bar()}
+ * )
+ */', '
+/**
+ * @Foo({
+ *     @Bar()}
+ * )
  */'],
         ]);
     }
@@ -605,8 +616,7 @@ final class DoctrineAnnotationIndentationFixerTest extends AbstractDoctrineAnnot
  * @Foo({
  *     @Bar()}
  * )
- */
-'],
+ */'],
         ]);
     }
 }