From 8657bc66a2edefc1703cb93b854bd870b891c02b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Fri, 15 Sep 2023 10:59:03 +0200 Subject: [PATCH] Use multiline annotation I'm suspecting that with old versions of PHPUnit or its supporting libraries, multiline won't work. Other occurrences of @requires in the project are multiline. --- .../Tests/ORM/Functional/Ticket/GH10661/GH10661Test.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10661/GH10661Test.php b/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10661/GH10661Test.php index bd8e7a8b335..eca527ca760 100644 --- a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10661/GH10661Test.php +++ b/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10661/GH10661Test.php @@ -8,7 +8,9 @@ use Doctrine\ORM\Tools\SchemaValidator; use Doctrine\Tests\OrmTestCase; -/** @requires PHP >= 7.4 */ +/** + * @requires PHP >= 7.4 + */ final class GH10661Test extends OrmTestCase { /** @var EntityManagerInterface */