-
-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a few more PHPStan settings and fix indendation.
Signed-off-by: Sacha Telgenhof <[email protected]>
- Loading branch information
1 parent
a1aed3d
commit 3f6855a
Showing
1 changed file
with
12 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
parameters: | ||
level: 6 | ||
paths: | ||
- src | ||
- examples | ||
ignoreErrors: | ||
- | ||
message: '#Comparison operation "<=" between [0-9]+ and int<[0-9]+, max> is always true.#' | ||
path: src/Yasumi/Provider/Turkey.php | ||
checkGenericClassInNonGenericObjectType: false | ||
level: 6 | ||
paths: | ||
- src | ||
- examples | ||
ignoreErrors: | ||
- | ||
message: '#Comparison operation "<=" between [0-9]+ and int<[0-9]+, max> is always true.#' | ||
path: src/Yasumi/Provider/Turkey.php | ||
checkGenericClassInNonGenericObjectType: false | ||
reportUnmatchedIgnoredErrors: true # Do not allow outdated errors in the baseline | ||
treatPhpDocTypesAsCertain: false | ||
tipsOfTheDay: false |