Skip to content

Commit d4206c3

Browse files
committed
PHP 8.5 baseline
1 parent f191285 commit d4206c3

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

build/ignore-by-php-version.neon.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@
4343

4444
if (PHP_VERSION_ID < 80500) {
4545
$includes[] = __DIR__ . '/pre-php-85.neon';
46+
} else {
47+
$includes[] = __DIR__ . '/php-85.neon';
4648
}
4749

4850
$config = [];

build/php-85.neon

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
identifier: method.deprecated
12+
count: 1
13+
path: ../src/Testing/TestCaseSourceLocatorFactory.php

0 commit comments

Comments
 (0)