-
-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathphpstan-baseline.neon
More file actions
55 lines (47 loc) · 1.83 KB
/
phpstan-baseline.neon
File metadata and controls
55 lines (47 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
parameters:
ignoreErrors:
-
message: '#^Unknown parameter \$sameSite in call to method Nette\\Http\\IResponse\:\:setCookie\(\)\.$#'
identifier: argument.unknown
count: 1
path: src/Http/Helpers.php
-
message: '#^Right side of && is always true\.$#'
identifier: booleanAnd.rightAlwaysTrue
count: 1
path: src/Http/Request.php
-
message: '#^Strict comparison using \=\=\= between 2 and 2 will always evaluate to true\.$#'
identifier: identical.alwaysTrue
count: 1
path: src/Http/Request.php
-
message: '#^Offset ''name'' on non\-empty\-array in isset\(\) always exists and is not nullable\.$#'
identifier: isset.offset
count: 1
path: src/Http/RequestFactory.php
-
message: '#^Variable \$_FILES on left side of \?\? always exists and is not nullable\.$#'
identifier: nullCoalesce.variable
count: 1
path: src/Http/RequestFactory.php
-
message: '#^Method Nette\\Http\\IResponse\:\:setCookie\(\) invoked with 8 parameters, 3\-7 required\.$#'
identifier: arguments.count
count: 1
path: src/Http/Session.php
-
message: '#^Offset ''samesite'' on array\{lifetime\: int\<0, max\>, path\: non\-falsy\-string, domain\: string, secure\: bool, httponly\: bool, samesite\: ''Lax''\|''lax''\|''None''\|''none''\|''Strict''\|''strict''\} on left side of \?\? always exists and is not nullable\.$#'
identifier: nullCoalesce.offset
count: 1
path: src/Http/Session.php
-
message: '#^Method Nette\\Http\\Url\:\:export\(\) return type has no value type specified in iterable type array\.$#'
identifier: missingType.iterableValue
count: 1
path: src/Http/Url.php
-
message: '#^Method Nette\\Http\\UrlImmutable\:\:export\(\) return type has no value type specified in iterable type array\.$#'
identifier: missingType.iterableValue
count: 1
path: src/Http/UrlImmutable.php