File tree 3 files changed +26
-0
lines changed
3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 1
1
.idea /
2
2
/vendor /
3
3
/composer.lock
4
+ /phpstan.neon
Original file line number Diff line number Diff line change 7
7
"php" : " >=7.2" ,
8
8
"ext-pthreads" : " ~3.2.0"
9
9
},
10
+ "require-dev" : {
11
+ "phpstan/phpstan" : " ^0.12.8"
12
+ },
10
13
"autoload" : {
11
14
"classmap" : [" ./src" ]
12
15
}
Original file line number Diff line number Diff line change
1
+ parameters:
2
+ level: 5
3
+ paths:
4
+ - src
5
+ ignoreErrors:
6
+ -
7
+ #pthreads array-access magic
8
+ message: "#^Cannot access an offset on iterable\\<ThreadedLoggerAttachment\\>&Volatile\\.$#"
9
+ count: 1
10
+ path: src/AttachableThreadedLogger.php
11
+
12
+ -
13
+ #pthreads array-access magic
14
+ message: "#^Cannot access offset mixed on iterable\\<ThreadedLoggerAttachment\\>&Volatile\\.$#"
15
+ count: 2
16
+ path: src/AttachableThreadedLogger.php
17
+
18
+ -
19
+ #pthreads array-access magic
20
+ message: "#^Cannot unset offset mixed on iterable\\<ThreadedLoggerAttachment\\>&Volatile\\.$#"
21
+ count: 2
22
+ path: src/AttachableThreadedLogger.php
You can’t perform that action at this time.
0 commit comments