-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpstan.neon
26 lines (23 loc) · 1.16 KB
/
phpstan.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
includes:
- ./vendor/larastan/larastan/extension.neon
parameters:
paths:
- app/
reportUnmatchedIgnoredErrors: false
# Level 9 is the highest level
level: 5
ignoreErrors:
- '#Call to an undefined static method Illuminate\\Support\\Facades\\Auth::token#'
- '#Call to an undefined static method App\\RulesEngineManagementController\\RulesEngineManagementController::evaluateRulesEngine\(\)#'
- '#Call to an undefined static method App\\RulesEngineManagementController\\RulesEngineManagementController::loadCustodianRules\(\)#'
- '#Access to an undefined property App\\Models\\User::\$unreadNotifications#'
- '#Access to an undefined property App\\Models\\ModelState::\$state#'
- '#Access to an undefined property Illuminate\\Database\\Eloquent\\Model::\$file_path#'
- '#Access to an undefined property App\\Models\\User::\$evaluation#'
- '#Deprecated in PHP 8\.4: Parameter \#1 \$user \(App\\Models\\User\) is implicitly nullable via default value null#'
#
# excludePaths:
# - ./*/*/FileToBeExcluded.php
#
# checkMissingIterableValueType: false
treatPhpDocTypesAsCertain: false