From a011ff8f866d2698d598a7c00de93f6a3b83bf0e Mon Sep 17 00:00:00 2001 From: Guilhem Niot Date: Sun, 25 Sep 2022 21:48:03 +0200 Subject: [PATCH] CS --- Tests/Functional/Entity/Dummy.php | 4 +++- Tests/Functional/TestKernel.php | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Tests/Functional/Entity/Dummy.php b/Tests/Functional/Entity/Dummy.php index 145aa46..33737a8 100644 --- a/Tests/Functional/Entity/Dummy.php +++ b/Tests/Functional/Entity/Dummy.php @@ -16,7 +16,9 @@ use Nelmio\ApiDocBundle\Tests\Functional\EntityExcluded; // BC Api-Platform < 3.x if (!class_exists(ApiProperty::class)) { - class Dummy extends EntityExcluded\ApiPlatform3\Dummy {} + class Dummy extends EntityExcluded\ApiPlatform3\Dummy + { + } } else { class_alias(EntityExcluded\ApiPlatform2\Dummy::class, Dummy::class); } diff --git a/Tests/Functional/TestKernel.php b/Tests/Functional/TestKernel.php index 0006cc5..f716027 100644 --- a/Tests/Functional/TestKernel.php +++ b/Tests/Functional/TestKernel.php @@ -167,7 +167,7 @@ class TestKernel extends Kernel 'mapping' => ['paths' => [ !class_exists(ApiProperty::class) ? '%kernel.project_dir%/Tests/Functional/EntityExcluded/ApiPlatform3' - : '%kernel.project_dir%/Tests/Functional/EntityExcluded/ApiPlatform2' + : '%kernel.project_dir%/Tests/Functional/EntityExcluded/ApiPlatform2', ]], ]);