-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan.neon
More file actions
32 lines (27 loc) · 1.35 KB
/
phpstan.neon
File metadata and controls
32 lines (27 loc) · 1.35 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
includes:
- ./vendor/larastan/larastan/extension.neon
parameters:
paths:
- app/
- config/
- routes/
- database/
- tests/
level: 6
parallel:
maximumNumberOfProcesses: 4
jobSize: 20
ignoreErrors:
- identifier: missingType.generics
- identifier: larastan.noModelMake
- '#^Call to an undefined method Mockery\\LegacyMockInterface::withArgs\(\)#'
- '#^Call to an undefined method Mockery\\LegacyMockInterface::atleast\(\)#'
- '#^Call to an undefined method Mockery\\LegacyMockInterface::once\(\)#'
- '#^Call to an undefined method Mockery\\LegacyMockInterface::with\(\)#'
- '#^Call to an undefined method Mockery\\ExpectationInterface|Mockery\\HigherOrderMessage::once\(\)#'
- '#^Call to an undefined method Illuminate\\Contracts\\Pagination\\LengthAwarePaginator::through\(\)#'
- '#^Call to an undefined method Illuminate\\Contracts\\Pagination\\LengthAwarePaginator::getCollection\(\)#'
- '#^Call to an undefined static method Illuminate\\Contracts\\Validation\\Validator::make\(\)#'
- '#Access to an undefined property App\\Services\\Tree\\TreeModelInterface::\$[a-zA-Z0-9_]+#'
- '#Call to an undefined method App\\Services\\Tree\\TreeModelInterface::[a-zA-Z0-9_]+#'
reportUnmatchedIgnoredErrors: false