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 4b3406e commit d73acefCopy full SHA for d73acef
build/deprecated-8.4.neon
@@ -0,0 +1,7 @@
1
+parameters:
2
+ ignoreErrors:
3
+ -
4
+ message: '#^Use of constant E_STRICT is deprecated\.$#'
5
+ identifier: constant.deprecated
6
+ count: 1
7
+ path: ../src/Analyser/FileAnalyser.php
build/ignore-by-php-version.neon.php
@@ -29,6 +29,10 @@
29
$includes[] = __DIR__ . '/datetime-php-83.neon';
30
}
31
32
+if (PHP_VERSION_ID >= 80400) {
33
+ $includes[] = __DIR__ . '/deprecated-8.4.neon';
34
+}
35
+
36
$config = [];
37
$config['includes'] = $includes;
38
0 commit comments