-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #201 from brambaud/issue/88/add-phpstan
add phpstan check to ci
- Loading branch information
Showing
3 changed files
with
25 additions
and
3 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
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
parameters: | ||
level: 1 | ||
inferPrivatePropertyTypeFromConstructor: true | ||
paths: | ||
- ./src/ | ||
excludes_analyse: | ||
- */cache/* | ||
ignoreErrors: | ||
# False positive: clients are not dependencies of this project. | ||
- | ||
message: '#Return typehint of method KnpU\\OAuth2ClientBundle\\Client\\Provider\\[a-zA-Z0-9\\_]+::fetchUserFromToken\(\) has invalid type [a-zA-Z0-9\\_]#' | ||
path: ./src/Client/Provider | ||
- | ||
message: '#Return typehint of method KnpU\\OAuth2ClientBundle\\Client\\Provider\\[a-zA-Z0-9\\_]+::fetchUser\(\) has invalid type [a-zA-Z0-9\\_]#' | ||
path: ./src/Client/Provider | ||
# False positive: using `::class` is not an error for those providers `::getProviderClass()` method. | ||
- | ||
message: '#Class [a-zA-Z0-9\\_]+ not found#' | ||
path: ./src/DependencyInjection/Providers |