From ada5cbb0f62d1d0ea1aff2028dc82aaf956829d9 Mon Sep 17 00:00:00 2001 From: soyuka Date: Mon, 27 Feb 2023 18:41:20 +0100 Subject: [PATCH] remove doctrine annotations --- tests/Fixtures/app/bootstrap.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/Fixtures/app/bootstrap.php b/tests/Fixtures/app/bootstrap.php index cb9d5b52a24..41483b99465 100644 --- a/tests/Fixtures/app/bootstrap.php +++ b/tests/Fixtures/app/bootstrap.php @@ -11,8 +11,6 @@ declare(strict_types=1); -use Doctrine\Common\Annotations\AnnotationRegistry; - date_default_timezone_set('UTC'); // PHPUnit's autoloader @@ -28,6 +26,4 @@ $loader = require __DIR__.'/../../../vendor/autoload.php'; require __DIR__.'/AppKernel.php'; -AnnotationRegistry::registerLoader('class_exists'); - return $loader;