-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathphpstan.neon
64 lines (61 loc) · 3.18 KB
/
phpstan.neon
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
parameters:
level: 7
paths:
- src/conformance-toolset/src/
- src/cose/src/
- src/metadata-service/src/
- src/symfony/src/
- src/webauthn/src/
ignoreErrors:
-
message: '#Parameter (.*) of class Jose\\Component\\Core\\AlgorithmManager constructor expects array\<Jose\\Component\\Core\\Algorithm\>\, array\<int\, object\> given\.#'
count: 1
path: 'src/webauthn/src/AttestationStatement/AndroidSafetyNetAttestationStatementSupport.php'
# Symfony Deprecation
-
message: '#Class Webauthn\\Bundle\\Security\\Authentication\\Provider\\WebauthnProvider implements deprecated interface Symfony\\Component\\Security\\Core\\Authentication\\Provider\\AuthenticationProviderInterface#'
count: 1
path: 'src/symfony/src/Security/Authentication/Provider/WebauthnProvider.php'
# Symfony Configuration
-
message: '#Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface::scalarNode\(\)\.#'
count: 1
path: 'src/symfony/src/DependencyInjection/Configuration.php'
-
message: '#Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition::(.*)\(\)#'
count: 1
path: 'src/symfony/src/DependencyInjection/Configuration.php'
-
message: '#Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition::(.*)\(\)#'
count: 1
path: 'src/symfony/src/Security/Factory/WebauthnSecurityFactory.php'
#FGrosse ASN.1 library
-
message: '#Parameter (.*) of class FG\\ASN1\\Universal\\Integer constructor expects int, string given\.#'
count: 2
path: 'src/cose/src/Key/RsaKey.php'
# OpenSSL
-
message: '#Parameter (.*) of function openssl_pkey_get_details expects OpenSSLAsymmetricKey, resource given\.#'
count: 1
path: 'src/webauthn/src/AttestationStatement/AndroidKeyAttestationStatementSupport.php'
-
message: '#Parameter (.*) of function openssl_pkey_get_details expects OpenSSLAsymmetricKey, resource given\.#'
count: 1
path: 'src/webauthn/src/AttestationStatement/FidoU2FAttestationStatementSupport.php'
-
message: '#Parameter (.*) of function openssl_pkey_get_details expects OpenSSLAsymmetricKey, resource given\.#'
count: 1
path: 'src/webauthn/src/AttestationStatement/AppleAttestationStatementSupport.php'
checkMissingIterableValueType: false
checkGenericClassInNonGenericObjectType: false
treatPhpDocTypesAsCertain: false
checkUninitializedProperties: true
includes:
- vendor/phpstan/phpstan-strict-rules/rules.neon
- vendor/phpstan/phpstan-phpunit/extension.neon
- vendor/phpstan/phpstan-phpunit/rules.neon
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
- vendor/phpstan/phpstan-beberlei-assert/extension.neon
- vendor/thecodingmachine/phpstan-safe-rule/phpstan-safe-rule.neon
- vendor/phpstan/phpstan/conf/bleedingEdge.neon