We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f191285 commit d4206c3Copy full SHA for d4206c3
build/ignore-by-php-version.neon.php
@@ -43,6 +43,8 @@
43
44
if (PHP_VERSION_ID < 80500) {
45
$includes[] = __DIR__ . '/pre-php-85.neon';
46
+} else {
47
+ $includes[] = __DIR__ . '/php-85.neon';
48
}
49
50
$config = [];
build/php-85.neon
@@ -0,0 +1,13 @@
1
+parameters:
2
+ ignoreErrors:
3
+ -
4
+ rawMessage: 'Call to deprecated method setAccessible() of class ReflectionMethod.'
5
+ identifier: method.deprecated
6
+ count: 1
7
+ path: ../src/Fixable/Patcher.php
8
+
9
10
+ rawMessage: 'Call to deprecated method setAccessible() of class ReflectionProperty.'
11
12
13
+ path: ../src/Testing/TestCaseSourceLocatorFactory.php
0 commit comments