Allow nullable parameters and return values

This commit is contained in:
Joshua Ramon Enslin 2023-06-23 23:06:27 +02:00
parent 041206040f
commit 96329baa07
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

@ -99,19 +99,11 @@ rules:
- PHPStan\Rules\VariableVariables\VariableStaticMethodCallRule - PHPStan\Rules\VariableVariables\VariableStaticMethodCallRule
- PHPStan\Rules\VariableVariables\VariableStaticPropertyFetchRule - PHPStan\Rules\VariableVariables\VariableStaticPropertyFetchRule
- PHPStan\Rules\VariableVariables\VariableVariablesRule - PHPStan\Rules\VariableVariables\VariableVariablesRule
- Ergebnis\PHPStan\Rules\Closures\NoNullableReturnTypeDeclarationRule
- Ergebnis\PHPStan\Rules\Closures\NoParameterWithNullableTypeDeclarationRule
- Ergebnis\PHPStan\Rules\Expressions\NoCompactRule - Ergebnis\PHPStan\Rules\Expressions\NoCompactRule
- Ergebnis\PHPStan\Rules\Expressions\NoErrorSuppressionRule - Ergebnis\PHPStan\Rules\Expressions\NoErrorSuppressionRule
- Ergebnis\PHPStan\Rules\Expressions\NoEvalRule - Ergebnis\PHPStan\Rules\Expressions\NoEvalRule
- Ergebnis\PHPStan\Rules\Files\DeclareStrictTypesRule - Ergebnis\PHPStan\Rules\Files\DeclareStrictTypesRule
- Ergebnis\PHPStan\Rules\Functions\NoNullableReturnTypeDeclarationRule
- Ergebnis\PHPStan\Rules\Functions\NoParameterWithNullableTypeDeclarationRule
- Ergebnis\PHPStan\Rules\Functions\NoParameterWithNullDefaultValueRule
- Ergebnis\PHPStan\Rules\Methods\FinalInAbstractClassRule - Ergebnis\PHPStan\Rules\Methods\FinalInAbstractClassRule
- Ergebnis\PHPStan\Rules\Methods\NoNullableReturnTypeDeclarationRule
- Ergebnis\PHPStan\Rules\Methods\NoParameterWithNullableTypeDeclarationRule
- Ergebnis\PHPStan\Rules\Methods\NoParameterWithNullDefaultValueRule
- Ergebnis\PHPStan\Rules\Methods\PrivateInFinalClassRule - Ergebnis\PHPStan\Rules\Methods\PrivateInFinalClassRule
services: services:
@ -146,9 +138,3 @@ services:
tags: tags:
- phpstan.rules.rule - phpstan.rules.rule
-
class: Ergebnis\PHPStan\Rules\Methods\NoParameterWithContainerTypeDeclarationRule
arguments:
interfacesImplementedByContainers: %ergebnis.interfacesImplementedByContainers%
tags:
- phpstan.rules.rule