From 1ee833efab85f484469f15267c6b32bb0ce55d20 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Sun, 15 Sep 2024 21:40:55 +0200 Subject: refactor: Replace __CLASS__ with ::class references Signed-off-by: Christoph Wurst --- tests/lib/AppFramework/Utility/ControllerMethodReflectorTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/lib/AppFramework/Utility') diff --git a/tests/lib/AppFramework/Utility/ControllerMethodReflectorTest.php b/tests/lib/AppFramework/Utility/ControllerMethodReflectorTest.php index b7d14cb6cba..e3a1f3a288e 100644 --- a/tests/lib/AppFramework/Utility/ControllerMethodReflectorTest.php +++ b/tests/lib/AppFramework/Utility/ControllerMethodReflectorTest.php @@ -72,7 +72,7 @@ class ControllerMethodReflectorTest extends \Test\TestCase { public function testGetAnnotationParameterSingle() { $reader = new ControllerMethodReflector(); $reader->reflect( - __CLASS__, + self::class, __FUNCTION__ ); @@ -85,7 +85,7 @@ class ControllerMethodReflectorTest extends \Test\TestCase { public function testGetAnnotationParameterMultiple() { $reader = new ControllerMethodReflector(); $reader->reflect( - __CLASS__, + self::class, __FUNCTION__ ); -- cgit v1.2.3