-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan.neon.dist
More file actions
26 lines (24 loc) · 798 Bytes
/
phpstan.neon.dist
File metadata and controls
26 lines (24 loc) · 798 Bytes
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
includes:
- phpstan-baseline.neon
parameters:
level: 4
paths:
- src
- config
- database
tmpDir: build/phpstan
checkOctaneCompatibility: true
checkModelProperties: true
reportUnmatchedIgnoredErrors: false
ignoreErrors:
# Trait methods are not analyzed by PHPStan
-
message: '#Call to an undefined method Illuminate\\Database\\Eloquent\\Model::(urls|generateUrl)\(\)#'
path: src/Commands/UrlsGenerateCommand.php
# Package traits are meant to be used by consumers, not within the package
-
identifier: trait.unused
paths:
- src/HasUniqueUrls.php
- src/HasUniqueUrlAttributes.php
- src/Testing/AssertsUniqueUrls.php