├── LICENSE ├── README.md ├── composer.json ├── config └── extension.neon └── src ├── CollectorDataNormalizer.php ├── Collectors ├── ConstantTypeDeclarationCollector.php ├── DeclareCollector.php ├── ParamTypeDeclarationCollector.php ├── PropertyTypeDeclarationCollector.php └── ReturnTypeDeclarationCollector.php ├── Configuration.php ├── Configuration └── ScopeConfigurationResolver.php ├── Formatter └── TypeCoverageFormatter.php ├── Rules ├── ConstantTypeCoverageRule.php ├── DeclareCoverageRule.php ├── ParamTypeCoverageRule.php ├── PropertyTypeCoverageRule.php └── ReturnTypeCoverageRule.php └── ValueObject └── TypeCountAndMissingTypes.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/composer.json -------------------------------------------------------------------------------- /config/extension.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/config/extension.neon -------------------------------------------------------------------------------- /src/CollectorDataNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/src/CollectorDataNormalizer.php -------------------------------------------------------------------------------- /src/Collectors/ConstantTypeDeclarationCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/src/Collectors/ConstantTypeDeclarationCollector.php -------------------------------------------------------------------------------- /src/Collectors/DeclareCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/src/Collectors/DeclareCollector.php -------------------------------------------------------------------------------- /src/Collectors/ParamTypeDeclarationCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/src/Collectors/ParamTypeDeclarationCollector.php -------------------------------------------------------------------------------- /src/Collectors/PropertyTypeDeclarationCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/src/Collectors/PropertyTypeDeclarationCollector.php -------------------------------------------------------------------------------- /src/Collectors/ReturnTypeDeclarationCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/src/Collectors/ReturnTypeDeclarationCollector.php -------------------------------------------------------------------------------- /src/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/src/Configuration.php -------------------------------------------------------------------------------- /src/Configuration/ScopeConfigurationResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/src/Configuration/ScopeConfigurationResolver.php -------------------------------------------------------------------------------- /src/Formatter/TypeCoverageFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/src/Formatter/TypeCoverageFormatter.php -------------------------------------------------------------------------------- /src/Rules/ConstantTypeCoverageRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/src/Rules/ConstantTypeCoverageRule.php -------------------------------------------------------------------------------- /src/Rules/DeclareCoverageRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/src/Rules/DeclareCoverageRule.php -------------------------------------------------------------------------------- /src/Rules/ParamTypeCoverageRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/src/Rules/ParamTypeCoverageRule.php -------------------------------------------------------------------------------- /src/Rules/PropertyTypeCoverageRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/src/Rules/PropertyTypeCoverageRule.php -------------------------------------------------------------------------------- /src/Rules/ReturnTypeCoverageRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/src/Rules/ReturnTypeCoverageRule.php -------------------------------------------------------------------------------- /src/ValueObject/TypeCountAndMissingTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasVotruba/type-coverage/HEAD/src/ValueObject/TypeCountAndMissingTypes.php --------------------------------------------------------------------------------