-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor #289 [ci] replace psalm with phpstan
- Loading branch information
Showing
5 changed files
with
66 additions
and
64 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,46 @@ | ||
parameters: | ||
ignoreErrors: | ||
- | ||
message: "#^Property SymfonyCasts\\\\Bundle\\\\ResetPassword\\\\Command\\\\ResetPasswordRemoveExpiredCommand\\:\\:\\$cleaner has no type specified\\.$#" | ||
count: 1 | ||
path: src/Command/ResetPasswordRemoveExpiredCommand.php | ||
|
||
- | ||
message: "#^Call to an undefined method Symfony\\\\Component\\\\Config\\\\Definition\\\\Builder\\\\NodeParentInterface\\:\\:integerNode\\(\\)\\.$#" | ||
count: 1 | ||
path: src/DependencyInjection/Configuration.php | ||
|
||
- | ||
message: "#^Property SymfonyCasts\\\\Bundle\\\\ResetPassword\\\\Exception\\\\TooManyPasswordRequestsException\\:\\:\\$availableAt has no type specified\\.$#" | ||
count: 1 | ||
path: src/Exception/TooManyPasswordRequestsException.php | ||
|
||
- | ||
message: "#^Method SymfonyCasts\\\\Bundle\\\\ResetPassword\\\\Model\\\\ResetPasswordToken\\:\\:getExpirationMessageData\\(\\) return type has no value type specified in iterable type array\\.$#" | ||
count: 1 | ||
path: src/Model/ResetPasswordToken.php | ||
|
||
- | ||
message: "#^Property SymfonyCasts\\\\Bundle\\\\ResetPassword\\\\ResetPasswordHelper\\:\\:\\$repository has no type specified\\.$#" | ||
count: 1 | ||
path: src/ResetPasswordHelper.php | ||
|
||
- | ||
message: "#^Property SymfonyCasts\\\\Bundle\\\\ResetPassword\\\\ResetPasswordHelper\\:\\:\\$resetPasswordCleaner has no type specified\\.$#" | ||
count: 1 | ||
path: src/ResetPasswordHelper.php | ||
|
||
- | ||
message: "#^Property SymfonyCasts\\\\Bundle\\\\ResetPassword\\\\ResetPasswordHelper\\:\\:\\$tokenGenerator has no type specified\\.$#" | ||
count: 1 | ||
path: src/ResetPasswordHelper.php | ||
|
||
- | ||
message: "#^PHPDoc tag @param references unknown parameter\\: \\$resetRequestLifetime$#" | ||
count: 1 | ||
path: src/ResetPasswordHelperInterface.php | ||
|
||
- | ||
message: "#^Property SymfonyCasts\\\\Bundle\\\\ResetPassword\\\\Util\\\\ResetPasswordCleaner\\:\\:\\$repository has no type specified\\.$#" | ||
count: 1 | ||
path: src/Util/ResetPasswordCleaner.php |
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,11 @@ | ||
includes: | ||
- phpstan-baseline.neon | ||
parameters: | ||
level: 6 | ||
bootstrapFiles: | ||
- vendor/autoload.php | ||
paths: | ||
- src | ||
#- tests | ||
# excludePaths: | ||
# ignoreErrors: |