From 698c276cbed4c58d6e5532358004c16d582710c4 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Tue, 17 Oct 2023 10:06:58 +0100 Subject: [PATCH] chore: fixes style --- src/Factories/Annotations/TestDox.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Factories/Annotations/TestDox.php b/src/Factories/Annotations/TestDox.php index 5998f5b8..e55738e7 100644 --- a/src/Factories/Annotations/TestDox.php +++ b/src/Factories/Annotations/TestDox.php @@ -14,12 +14,12 @@ final class TestDox implements AddsAnnotations */ public function __invoke(TestCaseMethodFactory $method, array $annotations): array { - /* - * Escapes docblock according to - * https://manual.phpdoc.org/HTMLframesConverter/default/phpDocumentor/tutorial_phpDocumentor.howto.pkg.html#basics.desc - * - * Note: '@' escaping is not needed as it cannot be the first character of the line (it always starts with @testdox). - */ + /* + * Escapes docblock according to + * https://manual.phpdoc.org/HTMLframesConverter/default/phpDocumentor/tutorial_phpDocumentor.howto.pkg.html#basics.desc + * + * Note: '@' escaping is not needed as it cannot be the first character of the line (it always starts with @testdox). + */ assert($method->description !== null); $methodDescription = str_replace('*/', '{@*}', $method->description);