-
-
Notifications
You must be signed in to change notification settings - Fork 332
/
Copy pathphpstan.neon
38 lines (36 loc) · 1.4 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
27
28
29
30
31
32
33
34
35
36
37
38
includes:
- vendor/larastan/larastan/extension.neon
- vendor/lychee-org/phpstan-lychee/phpstan.neon
- phpstan-baseline.neon
parameters:
level: 2
tips:
treatPhpDocTypesAsCertain: false
treatPhpDocTypesAsCertain: true
paths:
- app
- config
- lang
- database/migrations
- scripts
excludePaths:
- app/Services/Archives # This is creating errors depending if version 2.1 or 3.1 is installed...
stubFiles:
# these can be removed after https://github.com/thecodingmachine/safe/issues/283 has been merged
# TODO: remove me completely if no longer necessary.
- phpstan/stubs/image.stub
- phpstan/stubs/imageexception.stub
ignoreErrors:
-
message: '#Cast to bool is forbidden.#'
paths:
- config
- '#Dynamic call to static method Illuminate\\.*#'
- '#Dynamic call to static method App\\Models\\Builders.*#'
- '#Dynamic call to static method App\\Eloquent\\FixedQueryBuilder.*#'
- '#PHPDoc tag @var with type App\\Contracts\\Models\\AbstractAlbum*#' # TODO:// figure out how the inheritance between the traits work and remove this
# - '#.* should return Illuminate\\Support\\Collection<int,.*> but returns Illuminate\\Support\\Collection<int, stdClass>.#'
# -
# message: '#Parameter \#1 \$data .* of method .*::setData\(\) should be contravariant with parameter \$data \(array\) of method Illuminate\\Contracts\\Validation\\DataAwareRule::setData\(\)#'
# paths:
# - app/Rules