-
Notifications
You must be signed in to change notification settings - Fork 571
/
phpstan-baseline.neon
37 lines (32 loc) · 1.39 KB
/
phpstan-baseline.neon
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
parameters:
ignoreErrors:
-
message: '#^Method DebugKit\\Mailer\\Transport\\DebugKitTransport\:\:send\(\) should return array\{headers\: string, message\: string\} but returns array\{headers\: non\-empty\-array\<string, string\>, message\: array\{text\: string, html\: string\}\}\.$#'
identifier: return.type
count: 1
path: src/Mailer/Transport/DebugKitTransport.php
-
message: '#^Parameter \#1 \$request of method DebugKit\\ToolbarService\:\:saveData\(\) expects Cake\\Http\\ServerRequest, Psr\\Http\\Message\\ServerRequestInterface given\.$#'
identifier: argument.type
count: 1
path: src/Middleware/DebugKitMiddleware.php
-
message: '#^PHPDoc tag @property for property DebugKit\\Model\\Table\\PanelsTable\:\:\$Requests contains unresolvable type\.$#'
identifier: propertyTag.unresolvableType
count: 1
path: src/Model/Table/PanelsTable.php
-
message: '#^Call to an undefined method Cake\\ORM\\Locator\\LocatorInterface\:\:genericInstances\(\)\.$#'
identifier: method.notFound
count: 1
path: src/Panel/SqlLogPanel.php
-
message: '#^Dead catch \- Cake\\Core\\Exception\\CakeException is never thrown in the try block\.$#'
identifier: catch.neverThrown
count: 1
path: src/ToolbarService.php
-
message: '#^Unreachable statement \- code above always terminates\.$#'
identifier: deadCode.unreachable
count: 1
path: src/ToolbarService.php