1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
From: =?utf-8?q?David_Pr=C3=A9vot?= <david@tilapin.org>
Date: Tue, 21 May 2024 08:29:25 +0200
Subject: Drop file making PHPUnit 11 fail
Bug-Debian: https://bugs.debian.org/1070602
---
Service/Test/ServiceLocatorTest.php | 23 -----------------------
1 file changed, 23 deletions(-)
delete mode 100644 Service/Test/ServiceLocatorTest.php
diff --git a/Service/Test/ServiceLocatorTest.php b/Service/Test/ServiceLocatorTest.php
deleted file mode 100644
index 07d12b4..0000000
--- a/Service/Test/ServiceLocatorTest.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Contracts\Service\Test;
-
-class_alias(ServiceLocatorTestCase::class, ServiceLocatorTest::class);
-
-if (false) {
- /**
- * @deprecated since PHPUnit 9.6
- */
- class ServiceLocatorTest
- {
- }
-}
|