-
Notifications
You must be signed in to change notification settings - Fork 38
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 #596 from Slamdunk/phpstan_2
Upgrade to PHPStan 2
- Loading branch information
Showing
4 changed files
with
72 additions
and
24 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,55 @@ | ||
parameters: | ||
ignoreErrors: | ||
- | ||
message: "#^Class PSR7Sessions\\\\Storageless\\\\Http\\\\ClientFingerprint\\\\SameOriginRequest has an uninitialized readonly property \\$currentRequestFingerprint\\. Assign it in the constructor\\.$#" | ||
message: '#^Class PSR7Sessions\\Storageless\\Http\\ClientFingerprint\\SameOriginRequest has an uninitialized readonly property \$currentRequestFingerprint\. Assign it in the constructor\.$#' | ||
identifier: property.uninitializedReadonly | ||
count: 1 | ||
path: src/Storageless/Http/ClientFingerprint/SameOriginRequest.php | ||
|
||
- | ||
message: '#^@readonly property PSR7Sessions\\Storageless\\Http\\Configuration\:\:\$clientFingerprintConfiguration is assigned outside of the constructor\.$#' | ||
identifier: property.readOnlyByPhpDocAssignNotInConstructor | ||
count: 1 | ||
path: src/Storageless/Http/Configuration.php | ||
|
||
- | ||
message: '#^@readonly property PSR7Sessions\\Storageless\\Http\\Configuration\:\:\$clock is assigned outside of the constructor\.$#' | ||
identifier: property.readOnlyByPhpDocAssignNotInConstructor | ||
count: 1 | ||
path: src/Storageless/Http/Configuration.php | ||
|
||
- | ||
message: '#^@readonly property PSR7Sessions\\Storageless\\Http\\Configuration\:\:\$cookie is assigned outside of the constructor\.$#' | ||
identifier: property.readOnlyByPhpDocAssignNotInConstructor | ||
count: 1 | ||
path: src/Storageless/Http/Configuration.php | ||
|
||
- | ||
message: '#^@readonly property PSR7Sessions\\Storageless\\Http\\Configuration\:\:\$idleTimeout is assigned outside of the constructor\.$#' | ||
identifier: property.readOnlyByPhpDocAssignNotInConstructor | ||
count: 1 | ||
path: src/Storageless/Http/Configuration.php | ||
|
||
- | ||
message: '#^@readonly property PSR7Sessions\\Storageless\\Http\\Configuration\:\:\$jwtConfiguration is assigned outside of the constructor\.$#' | ||
identifier: property.readOnlyByPhpDocAssignNotInConstructor | ||
count: 1 | ||
path: src/Storageless/Http/Configuration.php | ||
|
||
- | ||
message: '#^@readonly property PSR7Sessions\\Storageless\\Http\\Configuration\:\:\$refreshTime is assigned outside of the constructor\.$#' | ||
identifier: property.readOnlyByPhpDocAssignNotInConstructor | ||
count: 1 | ||
path: src/Storageless/Http/Configuration.php | ||
|
||
- | ||
message: '#^@readonly property PSR7Sessions\\Storageless\\Http\\Configuration\:\:\$sessionAttribute is assigned outside of the constructor\.$#' | ||
identifier: property.readOnlyByPhpDocAssignNotInConstructor | ||
count: 1 | ||
path: src/Storageless/Http/Configuration.php | ||
|
||
- | ||
message: '#^@readonly property cannot have a default value\.$#' | ||
identifier: property.readOnlyByPhpDocDefaultValue | ||
count: 3 | ||
path: src/Storageless/Http/Configuration.php |