We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5267c0 commit 55ebdd4Copy full SHA for 55ebdd4
.phpstan/baseline-lt-8.2.neon
@@ -0,0 +1,17 @@
1
+parameters:
2
+ ignoreErrors:
3
+ -
4
+ message: "#^Call to method getBytesFromString\\(\\) on an unknown class Random\\\\Randomizer\\.$#"
5
+ count: 1
6
+ path: ../src/Core/OAuth2Provider.php
7
+
8
9
+ message: "#^Instantiated class Random\\\\Engine\\\\Secure not found\\.$#"
10
11
12
13
14
+ message: "#^Instantiated class Random\\\\Randomizer not found\\.$#"
15
16
17
.phpstan/ignore-by-php-version.php
@@ -4,7 +4,10 @@
$includes = [];
-if(PHP_VERSION_ID < 80300){
+if(PHP_VERSION_ID < 80200){
+ $includes[] = __DIR__.'/baseline-lt-8.2.neon';
+}
+elseif(PHP_VERSION_ID < 80300){
$includes[] = __DIR__.'/baseline-lt-8.3.neon';
}
0 commit comments