├── CHANGELOG.md ├── LICENSE ├── README.md ├── bootstrap.php ├── composer.json └── src ├── Analyzer ├── Analysis │ ├── ArgumentAnalysis.php │ ├── ArrayElementAnalysis.php │ ├── CaseAnalysis.php │ ├── ConstructorAnalysis.php │ └── SwitchAnalysis.php ├── ArrayAnalyzer.php ├── ConstructorAnalyzer.php ├── FunctionAnalyzer.php └── SwitchAnalyzer.php ├── Fixer ├── AbstractFixer.php ├── AbstractTypesFixer.php ├── ClassConstantUsageFixer.php ├── CommentSurroundedBySpacesFixer.php ├── CommentedOutFunctionFixer.php ├── ConstructorEmptyBracesFixer.php ├── DataProviderNameFixer.php ├── DataProviderReturnTypeFixer.php ├── DataProviderStaticFixer.php ├── DeclareAfterOpeningTagFixer.php ├── EmptyFunctionBodyFixer.php ├── ForeachUseValueFixer.php ├── FunctionParameterSeparationFixer.php ├── InternalClassCasingFixer.php ├── IssetToArrayKeyExistsFixer.php ├── MultilineCommentOpeningClosingAloneFixer.php ├── MultilinePromotedPropertiesFixer.php ├── NoCommentedOutCodeFixer.php ├── NoDoctrineMigrationsGeneratedCommentFixer.php ├── NoDuplicatedArrayKeyFixer.php ├── NoDuplicatedImportsFixer.php ├── NoImportFromGlobalNamespaceFixer.php ├── NoLeadingSlashInGlobalNamespaceFixer.php ├── NoNullableBooleanTypeFixer.php ├── NoPhpStormGeneratedCommentFixer.php ├── NoReferenceInFunctionDefinitionFixer.php ├── NoSuperfluousConcatenationFixer.php ├── NoTrailingCommaInSinglelineFixer.php ├── NoUselessCommentFixer.php ├── NoUselessDirnameCallFixer.php ├── NoUselessDoctrineRepositoryCommentFixer.php ├── NoUselessParenthesisFixer.php ├── NoUselessStrlenFixer.php ├── NoUselessWriteVisibilityFixer.php ├── NumericLiteralSeparatorFixer.php ├── PhpDocPropertySorterFixer.php ├── PhpUnitAssertArgumentsOrderFixer.php ├── PhpUnitDedicatedAssertFixer.php ├── PhpUnitNoUselessReturnFixer.php ├── PhpUnitRequiresConstraintFixer.php ├── PhpdocArrayStyleFixer.php ├── PhpdocNoIncorrectVarAnnotationFixer.php ├── PhpdocNoSuperfluousParamFixer.php ├── PhpdocOnlyAllowedAnnotationsFixer.php ├── PhpdocParamOrderFixer.php ├── PhpdocParamTypeFixer.php ├── PhpdocPropertySortedFixer.php ├── PhpdocSelfAccessorFixer.php ├── PhpdocSingleLineVarFixer.php ├── PhpdocTagNoNamedArgumentsFixer.php ├── PhpdocTypeListFixer.php ├── PhpdocTypesCommaSpacesFixer.php ├── PhpdocTypesTrimFixer.php ├── PhpdocVarAnnotationToAssertFixer.php ├── PromotedConstructorPropertyFixer.php ├── ReadonlyPromotedPropertiesFixer.php ├── SingleSpaceAfterStatementFixer.php ├── SingleSpaceBeforeStatementFixer.php ├── StringableInterfaceFixer.php ├── TrimKeyFixer.php └── TypedClassConstantFixer.php ├── Fixers.php └── TokenRemover.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/bootstrap.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/composer.json -------------------------------------------------------------------------------- /src/Analyzer/Analysis/ArgumentAnalysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Analyzer/Analysis/ArgumentAnalysis.php -------------------------------------------------------------------------------- /src/Analyzer/Analysis/ArrayElementAnalysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Analyzer/Analysis/ArrayElementAnalysis.php -------------------------------------------------------------------------------- /src/Analyzer/Analysis/CaseAnalysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Analyzer/Analysis/CaseAnalysis.php -------------------------------------------------------------------------------- /src/Analyzer/Analysis/ConstructorAnalysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Analyzer/Analysis/ConstructorAnalysis.php -------------------------------------------------------------------------------- /src/Analyzer/Analysis/SwitchAnalysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Analyzer/Analysis/SwitchAnalysis.php -------------------------------------------------------------------------------- /src/Analyzer/ArrayAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Analyzer/ArrayAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/ConstructorAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Analyzer/ConstructorAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/FunctionAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Analyzer/FunctionAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/SwitchAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Analyzer/SwitchAnalyzer.php -------------------------------------------------------------------------------- /src/Fixer/AbstractFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/AbstractFixer.php -------------------------------------------------------------------------------- /src/Fixer/AbstractTypesFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/AbstractTypesFixer.php -------------------------------------------------------------------------------- /src/Fixer/ClassConstantUsageFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/ClassConstantUsageFixer.php -------------------------------------------------------------------------------- /src/Fixer/CommentSurroundedBySpacesFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/CommentSurroundedBySpacesFixer.php -------------------------------------------------------------------------------- /src/Fixer/CommentedOutFunctionFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/CommentedOutFunctionFixer.php -------------------------------------------------------------------------------- /src/Fixer/ConstructorEmptyBracesFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/ConstructorEmptyBracesFixer.php -------------------------------------------------------------------------------- /src/Fixer/DataProviderNameFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/DataProviderNameFixer.php -------------------------------------------------------------------------------- /src/Fixer/DataProviderReturnTypeFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/DataProviderReturnTypeFixer.php -------------------------------------------------------------------------------- /src/Fixer/DataProviderStaticFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/DataProviderStaticFixer.php -------------------------------------------------------------------------------- /src/Fixer/DeclareAfterOpeningTagFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/DeclareAfterOpeningTagFixer.php -------------------------------------------------------------------------------- /src/Fixer/EmptyFunctionBodyFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/EmptyFunctionBodyFixer.php -------------------------------------------------------------------------------- /src/Fixer/ForeachUseValueFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/ForeachUseValueFixer.php -------------------------------------------------------------------------------- /src/Fixer/FunctionParameterSeparationFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/FunctionParameterSeparationFixer.php -------------------------------------------------------------------------------- /src/Fixer/InternalClassCasingFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/InternalClassCasingFixer.php -------------------------------------------------------------------------------- /src/Fixer/IssetToArrayKeyExistsFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/IssetToArrayKeyExistsFixer.php -------------------------------------------------------------------------------- /src/Fixer/MultilineCommentOpeningClosingAloneFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/MultilineCommentOpeningClosingAloneFixer.php -------------------------------------------------------------------------------- /src/Fixer/MultilinePromotedPropertiesFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/MultilinePromotedPropertiesFixer.php -------------------------------------------------------------------------------- /src/Fixer/NoCommentedOutCodeFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NoCommentedOutCodeFixer.php -------------------------------------------------------------------------------- /src/Fixer/NoDoctrineMigrationsGeneratedCommentFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NoDoctrineMigrationsGeneratedCommentFixer.php -------------------------------------------------------------------------------- /src/Fixer/NoDuplicatedArrayKeyFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NoDuplicatedArrayKeyFixer.php -------------------------------------------------------------------------------- /src/Fixer/NoDuplicatedImportsFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NoDuplicatedImportsFixer.php -------------------------------------------------------------------------------- /src/Fixer/NoImportFromGlobalNamespaceFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NoImportFromGlobalNamespaceFixer.php -------------------------------------------------------------------------------- /src/Fixer/NoLeadingSlashInGlobalNamespaceFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NoLeadingSlashInGlobalNamespaceFixer.php -------------------------------------------------------------------------------- /src/Fixer/NoNullableBooleanTypeFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NoNullableBooleanTypeFixer.php -------------------------------------------------------------------------------- /src/Fixer/NoPhpStormGeneratedCommentFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NoPhpStormGeneratedCommentFixer.php -------------------------------------------------------------------------------- /src/Fixer/NoReferenceInFunctionDefinitionFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NoReferenceInFunctionDefinitionFixer.php -------------------------------------------------------------------------------- /src/Fixer/NoSuperfluousConcatenationFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NoSuperfluousConcatenationFixer.php -------------------------------------------------------------------------------- /src/Fixer/NoTrailingCommaInSinglelineFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NoTrailingCommaInSinglelineFixer.php -------------------------------------------------------------------------------- /src/Fixer/NoUselessCommentFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NoUselessCommentFixer.php -------------------------------------------------------------------------------- /src/Fixer/NoUselessDirnameCallFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NoUselessDirnameCallFixer.php -------------------------------------------------------------------------------- /src/Fixer/NoUselessDoctrineRepositoryCommentFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NoUselessDoctrineRepositoryCommentFixer.php -------------------------------------------------------------------------------- /src/Fixer/NoUselessParenthesisFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NoUselessParenthesisFixer.php -------------------------------------------------------------------------------- /src/Fixer/NoUselessStrlenFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NoUselessStrlenFixer.php -------------------------------------------------------------------------------- /src/Fixer/NoUselessWriteVisibilityFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NoUselessWriteVisibilityFixer.php -------------------------------------------------------------------------------- /src/Fixer/NumericLiteralSeparatorFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/NumericLiteralSeparatorFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpDocPropertySorterFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpDocPropertySorterFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpUnitAssertArgumentsOrderFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpUnitAssertArgumentsOrderFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpUnitDedicatedAssertFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpUnitDedicatedAssertFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpUnitNoUselessReturnFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpUnitNoUselessReturnFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpUnitRequiresConstraintFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpUnitRequiresConstraintFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpdocArrayStyleFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpdocArrayStyleFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpdocNoIncorrectVarAnnotationFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpdocNoIncorrectVarAnnotationFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpdocNoSuperfluousParamFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpdocNoSuperfluousParamFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpdocOnlyAllowedAnnotationsFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpdocOnlyAllowedAnnotationsFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpdocParamOrderFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpdocParamOrderFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpdocParamTypeFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpdocParamTypeFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpdocPropertySortedFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpdocPropertySortedFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpdocSelfAccessorFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpdocSelfAccessorFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpdocSingleLineVarFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpdocSingleLineVarFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpdocTagNoNamedArgumentsFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpdocTagNoNamedArgumentsFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpdocTypeListFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpdocTypeListFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpdocTypesCommaSpacesFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpdocTypesCommaSpacesFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpdocTypesTrimFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpdocTypesTrimFixer.php -------------------------------------------------------------------------------- /src/Fixer/PhpdocVarAnnotationToAssertFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PhpdocVarAnnotationToAssertFixer.php -------------------------------------------------------------------------------- /src/Fixer/PromotedConstructorPropertyFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/PromotedConstructorPropertyFixer.php -------------------------------------------------------------------------------- /src/Fixer/ReadonlyPromotedPropertiesFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/ReadonlyPromotedPropertiesFixer.php -------------------------------------------------------------------------------- /src/Fixer/SingleSpaceAfterStatementFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/SingleSpaceAfterStatementFixer.php -------------------------------------------------------------------------------- /src/Fixer/SingleSpaceBeforeStatementFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/SingleSpaceBeforeStatementFixer.php -------------------------------------------------------------------------------- /src/Fixer/StringableInterfaceFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/StringableInterfaceFixer.php -------------------------------------------------------------------------------- /src/Fixer/TrimKeyFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/TrimKeyFixer.php -------------------------------------------------------------------------------- /src/Fixer/TypedClassConstantFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixer/TypedClassConstantFixer.php -------------------------------------------------------------------------------- /src/Fixers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/Fixers.php -------------------------------------------------------------------------------- /src/TokenRemover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubawerlos/php-cs-fixer-custom-fixers/HEAD/src/TokenRemover.php --------------------------------------------------------------------------------