From b24035e1444935bcd3bc70048d56ceb7f2ae281f Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Tue, 18 Nov 2025 00:08:30 +0700 Subject: [PATCH 1/2] Update fixture class name --- .../Fixture/supports_static_self_call.php.inc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/rules-tests/CodingStyle/Rector/FuncCall/ClosureFromCallableToFirstClassCallableRector/Fixture/supports_static_self_call.php.inc b/rules-tests/CodingStyle/Rector/FuncCall/ClosureFromCallableToFirstClassCallableRector/Fixture/supports_static_self_call.php.inc index 45bd4313818..bf5b7b1ac82 100644 --- a/rules-tests/CodingStyle/Rector/FuncCall/ClosureFromCallableToFirstClassCallableRector/Fixture/supports_static_self_call.php.inc +++ b/rules-tests/CodingStyle/Rector/FuncCall/ClosureFromCallableToFirstClassCallableRector/Fixture/supports_static_self_call.php.inc @@ -1,6 +1,8 @@ Date: Tue, 18 Nov 2025 00:08:46 +0700 Subject: [PATCH 2/2] Update fixture class name --- .../Fixture/supports_static_self_call.php.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules-tests/CodingStyle/Rector/FuncCall/ClosureFromCallableToFirstClassCallableRector/Fixture/supports_static_self_call.php.inc b/rules-tests/CodingStyle/Rector/FuncCall/ClosureFromCallableToFirstClassCallableRector/Fixture/supports_static_self_call.php.inc index bf5b7b1ac82..7013d15173b 100644 --- a/rules-tests/CodingStyle/Rector/FuncCall/ClosureFromCallableToFirstClassCallableRector/Fixture/supports_static_self_call.php.inc +++ b/rules-tests/CodingStyle/Rector/FuncCall/ClosureFromCallableToFirstClassCallableRector/Fixture/supports_static_self_call.php.inc @@ -6,7 +6,7 @@ class SupportStaticSelfCall { public static function bar(): void { - set_exception_handler(Closure::fromCallable([self::class, 'baz'])); + set_exception_handler(\Closure::fromCallable([self::class, 'baz'])); } public static function baz(): void