diff --git a/PHPCompatibilitySymfonyPolyfillPHP84/ruleset.xml b/PHPCompatibilitySymfonyPolyfillPHP84/ruleset.xml index 9e4381b..2347520 100644 --- a/PHPCompatibilitySymfonyPolyfillPHP84/ruleset.xml +++ b/PHPCompatibilitySymfonyPolyfillPHP84/ruleset.xml @@ -24,10 +24,7 @@ - diff --git a/PHPCompatibilitySymfonyPolyfillPHP85/ruleset.xml b/PHPCompatibilitySymfonyPolyfillPHP85/ruleset.xml index 542f0a9..4e4643e 100644 --- a/PHPCompatibilitySymfonyPolyfillPHP85/ruleset.xml +++ b/PHPCompatibilitySymfonyPolyfillPHP85/ruleset.xml @@ -14,10 +14,7 @@ - diff --git a/Test/SymfonyPolyfillPHP84Test.php b/Test/SymfonyPolyfillPHP84Test.php index 1da2bda..93f8d28 100644 --- a/Test/SymfonyPolyfillPHP84Test.php +++ b/Test/SymfonyPolyfillPHP84Test.php @@ -24,5 +24,9 @@ $r = new ReflectionConstant(ClassName::CONSTANT_NAME); +/* +// This test will not help at this time as we can't just ignore the use of the Deprecated attribute +// with the current attribute handling in PHPCompatibility 10.0. #[Deprecated] function foo() {} +*/ diff --git a/Test/SymfonyPolyfillPHP85Test.php b/Test/SymfonyPolyfillPHP85Test.php index 9da15e5..2a4a2d9 100644 --- a/Test/SymfonyPolyfillPHP85Test.php +++ b/Test/SymfonyPolyfillPHP85Test.php @@ -8,6 +8,10 @@ array_first($array); array_last($array); +/* +// This test will not help at this time as we can't just ignore the use of the DelayedTargetValidation/NoDiscard attribute +// with the current attribute handling in PHPCompatibility 10.0. #[DelayedTargetValidation] #[NoDiscard] function dummy() {} +*/