├── .circleci └── config.yml ├── .github ├── auto_assign.yml ├── dependabot.yml ├── semantic.yml └── workflows │ └── auto-assign.yaml ├── .gitignore ├── .php-cs-fixer.dist.php ├── .releaserc ├── README.md ├── bin ├── Utils.php ├── doc └── doc.twig ├── composer.json ├── doc └── rule-set-factory.md ├── package.json ├── spec └── PedroTroller │ └── CS │ └── Fixer │ └── RuleSetFactorySpec.php ├── src └── PedroTroller │ └── CS │ └── Fixer │ ├── AbstractFixer.php │ ├── AbstractOrderedClassElementsFixer.php │ ├── Behat │ └── OrderBehatStepsFixer.php │ ├── ClassNotation │ └── OrderedWithGetterAndSetterFirstFixer.php │ ├── CodingStyle │ ├── ExceptionsPunctuationFixer.php │ ├── ForbiddenFunctionsFixer.php │ ├── LineBreakBetweenMethodArgumentsFixer.php │ └── LineBreakBetweenStatementsFixer.php │ ├── Comment │ └── CommentLineToPhpdocBlockFixer.php │ ├── DeadCode │ └── UselessCodeAfterReturnFixer.php │ ├── DoctrineMigrationsFixer.php │ ├── Fixers.php │ ├── PhpspecFixer.php │ ├── Priority.php │ ├── RuleSetFactory.php │ ├── TokenSignatures.php │ └── TokensAnalyzer.php └── tests ├── Orchestra.php ├── Runner.php ├── TokensAnalyzerIntegration.php ├── TokensAnalyzerIntegration ├── InSwitch.php ├── LineIndentation.php ├── MethodArguments.php ├── NextComma.php ├── NextSemiColon.php ├── Parenthesis.php ├── ReturnedType.php └── SizeOfTheLine.php ├── UseCase.php └── UseCase ├── Behat.php ├── CommentLineToPhpdocBlock.php ├── DoctrineMigrations ├── UselessComments.php └── UselessGetDescription.php ├── ExceptionsPunctuation.php ├── ForbiddenFunctions.php ├── FuncSpec.php ├── LineBreakBetweenMethods.php ├── LineBreakBetweenMethods └── Regression │ ├── Case1.php │ ├── Case1 │ └── CamelizeNamingStrategy.php.text │ ├── Case10.php │ ├── Case2.php │ ├── Case3.php │ ├── Case4.php │ ├── Case5.php │ ├── Case6.php │ ├── Case7.php │ ├── Case8.php │ └── Case9.php ├── LineBreakBetweenMethodsWithNoReformatting.php ├── LineBreakBetweenMethodsWithNoSplitOnNumberOfArgs.php ├── LineBreakBetweenStatements.php ├── OrderedWithGetterAndSetterFirst.php ├── OrderedWithGetterAndSetterFirst └── Regression │ ├── Case1.php │ └── Case2.php ├── Phpspec.php ├── Phpspec └── Regression │ ├── Case1.php │ ├── Case1 │ └── file.php.txt │ ├── Case2.php │ ├── Case2 │ └── file.php.txt │ └── Case3.php ├── UselessCodeAfterReturn.php └── UselessCodeAfterReturn └── Regression ├── Case1.php └── Case1 └── file.php.txt /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.github/workflows/auto-assign.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/.github/workflows/auto-assign.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/.releaserc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/README.md -------------------------------------------------------------------------------- /bin/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/bin/Utils.php -------------------------------------------------------------------------------- /bin/doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/bin/doc -------------------------------------------------------------------------------- /bin/doc.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/bin/doc.twig -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/composer.json -------------------------------------------------------------------------------- /doc/rule-set-factory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/doc/rule-set-factory.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/package.json -------------------------------------------------------------------------------- /spec/PedroTroller/CS/Fixer/RuleSetFactorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/spec/PedroTroller/CS/Fixer/RuleSetFactorySpec.php -------------------------------------------------------------------------------- /src/PedroTroller/CS/Fixer/AbstractFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/src/PedroTroller/CS/Fixer/AbstractFixer.php -------------------------------------------------------------------------------- /src/PedroTroller/CS/Fixer/AbstractOrderedClassElementsFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/src/PedroTroller/CS/Fixer/AbstractOrderedClassElementsFixer.php -------------------------------------------------------------------------------- /src/PedroTroller/CS/Fixer/Behat/OrderBehatStepsFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/src/PedroTroller/CS/Fixer/Behat/OrderBehatStepsFixer.php -------------------------------------------------------------------------------- /src/PedroTroller/CS/Fixer/ClassNotation/OrderedWithGetterAndSetterFirstFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/src/PedroTroller/CS/Fixer/ClassNotation/OrderedWithGetterAndSetterFirstFixer.php -------------------------------------------------------------------------------- /src/PedroTroller/CS/Fixer/CodingStyle/ExceptionsPunctuationFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/src/PedroTroller/CS/Fixer/CodingStyle/ExceptionsPunctuationFixer.php -------------------------------------------------------------------------------- /src/PedroTroller/CS/Fixer/CodingStyle/ForbiddenFunctionsFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/src/PedroTroller/CS/Fixer/CodingStyle/ForbiddenFunctionsFixer.php -------------------------------------------------------------------------------- /src/PedroTroller/CS/Fixer/CodingStyle/LineBreakBetweenMethodArgumentsFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/src/PedroTroller/CS/Fixer/CodingStyle/LineBreakBetweenMethodArgumentsFixer.php -------------------------------------------------------------------------------- /src/PedroTroller/CS/Fixer/CodingStyle/LineBreakBetweenStatementsFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/src/PedroTroller/CS/Fixer/CodingStyle/LineBreakBetweenStatementsFixer.php -------------------------------------------------------------------------------- /src/PedroTroller/CS/Fixer/Comment/CommentLineToPhpdocBlockFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/src/PedroTroller/CS/Fixer/Comment/CommentLineToPhpdocBlockFixer.php -------------------------------------------------------------------------------- /src/PedroTroller/CS/Fixer/DeadCode/UselessCodeAfterReturnFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/src/PedroTroller/CS/Fixer/DeadCode/UselessCodeAfterReturnFixer.php -------------------------------------------------------------------------------- /src/PedroTroller/CS/Fixer/DoctrineMigrationsFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/src/PedroTroller/CS/Fixer/DoctrineMigrationsFixer.php -------------------------------------------------------------------------------- /src/PedroTroller/CS/Fixer/Fixers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/src/PedroTroller/CS/Fixer/Fixers.php -------------------------------------------------------------------------------- /src/PedroTroller/CS/Fixer/PhpspecFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/src/PedroTroller/CS/Fixer/PhpspecFixer.php -------------------------------------------------------------------------------- /src/PedroTroller/CS/Fixer/Priority.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/src/PedroTroller/CS/Fixer/Priority.php -------------------------------------------------------------------------------- /src/PedroTroller/CS/Fixer/RuleSetFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/src/PedroTroller/CS/Fixer/RuleSetFactory.php -------------------------------------------------------------------------------- /src/PedroTroller/CS/Fixer/TokenSignatures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/src/PedroTroller/CS/Fixer/TokenSignatures.php -------------------------------------------------------------------------------- /src/PedroTroller/CS/Fixer/TokensAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/src/PedroTroller/CS/Fixer/TokensAnalyzer.php -------------------------------------------------------------------------------- /tests/Orchestra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/Orchestra.php -------------------------------------------------------------------------------- /tests/Runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/Runner.php -------------------------------------------------------------------------------- /tests/TokensAnalyzerIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/TokensAnalyzerIntegration.php -------------------------------------------------------------------------------- /tests/TokensAnalyzerIntegration/InSwitch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/TokensAnalyzerIntegration/InSwitch.php -------------------------------------------------------------------------------- /tests/TokensAnalyzerIntegration/LineIndentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/TokensAnalyzerIntegration/LineIndentation.php -------------------------------------------------------------------------------- /tests/TokensAnalyzerIntegration/MethodArguments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/TokensAnalyzerIntegration/MethodArguments.php -------------------------------------------------------------------------------- /tests/TokensAnalyzerIntegration/NextComma.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/TokensAnalyzerIntegration/NextComma.php -------------------------------------------------------------------------------- /tests/TokensAnalyzerIntegration/NextSemiColon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/TokensAnalyzerIntegration/NextSemiColon.php -------------------------------------------------------------------------------- /tests/TokensAnalyzerIntegration/Parenthesis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/TokensAnalyzerIntegration/Parenthesis.php -------------------------------------------------------------------------------- /tests/TokensAnalyzerIntegration/ReturnedType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/TokensAnalyzerIntegration/ReturnedType.php -------------------------------------------------------------------------------- /tests/TokensAnalyzerIntegration/SizeOfTheLine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/TokensAnalyzerIntegration/SizeOfTheLine.php -------------------------------------------------------------------------------- /tests/UseCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase.php -------------------------------------------------------------------------------- /tests/UseCase/Behat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/Behat.php -------------------------------------------------------------------------------- /tests/UseCase/CommentLineToPhpdocBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/CommentLineToPhpdocBlock.php -------------------------------------------------------------------------------- /tests/UseCase/DoctrineMigrations/UselessComments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/DoctrineMigrations/UselessComments.php -------------------------------------------------------------------------------- /tests/UseCase/DoctrineMigrations/UselessGetDescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/DoctrineMigrations/UselessGetDescription.php -------------------------------------------------------------------------------- /tests/UseCase/ExceptionsPunctuation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/ExceptionsPunctuation.php -------------------------------------------------------------------------------- /tests/UseCase/ForbiddenFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/ForbiddenFunctions.php -------------------------------------------------------------------------------- /tests/UseCase/FuncSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/FuncSpec.php -------------------------------------------------------------------------------- /tests/UseCase/LineBreakBetweenMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/LineBreakBetweenMethods.php -------------------------------------------------------------------------------- /tests/UseCase/LineBreakBetweenMethods/Regression/Case1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/LineBreakBetweenMethods/Regression/Case1.php -------------------------------------------------------------------------------- /tests/UseCase/LineBreakBetweenMethods/Regression/Case1/CamelizeNamingStrategy.php.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/LineBreakBetweenMethods/Regression/Case1/CamelizeNamingStrategy.php.text -------------------------------------------------------------------------------- /tests/UseCase/LineBreakBetweenMethods/Regression/Case10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/LineBreakBetweenMethods/Regression/Case10.php -------------------------------------------------------------------------------- /tests/UseCase/LineBreakBetweenMethods/Regression/Case2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/LineBreakBetweenMethods/Regression/Case2.php -------------------------------------------------------------------------------- /tests/UseCase/LineBreakBetweenMethods/Regression/Case3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/LineBreakBetweenMethods/Regression/Case3.php -------------------------------------------------------------------------------- /tests/UseCase/LineBreakBetweenMethods/Regression/Case4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/LineBreakBetweenMethods/Regression/Case4.php -------------------------------------------------------------------------------- /tests/UseCase/LineBreakBetweenMethods/Regression/Case5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/LineBreakBetweenMethods/Regression/Case5.php -------------------------------------------------------------------------------- /tests/UseCase/LineBreakBetweenMethods/Regression/Case6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/LineBreakBetweenMethods/Regression/Case6.php -------------------------------------------------------------------------------- /tests/UseCase/LineBreakBetweenMethods/Regression/Case7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/LineBreakBetweenMethods/Regression/Case7.php -------------------------------------------------------------------------------- /tests/UseCase/LineBreakBetweenMethods/Regression/Case8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/LineBreakBetweenMethods/Regression/Case8.php -------------------------------------------------------------------------------- /tests/UseCase/LineBreakBetweenMethods/Regression/Case9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/LineBreakBetweenMethods/Regression/Case9.php -------------------------------------------------------------------------------- /tests/UseCase/LineBreakBetweenMethodsWithNoReformatting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/LineBreakBetweenMethodsWithNoReformatting.php -------------------------------------------------------------------------------- /tests/UseCase/LineBreakBetweenMethodsWithNoSplitOnNumberOfArgs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/LineBreakBetweenMethodsWithNoSplitOnNumberOfArgs.php -------------------------------------------------------------------------------- /tests/UseCase/LineBreakBetweenStatements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/LineBreakBetweenStatements.php -------------------------------------------------------------------------------- /tests/UseCase/OrderedWithGetterAndSetterFirst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/OrderedWithGetterAndSetterFirst.php -------------------------------------------------------------------------------- /tests/UseCase/OrderedWithGetterAndSetterFirst/Regression/Case1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/OrderedWithGetterAndSetterFirst/Regression/Case1.php -------------------------------------------------------------------------------- /tests/UseCase/OrderedWithGetterAndSetterFirst/Regression/Case2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/OrderedWithGetterAndSetterFirst/Regression/Case2.php -------------------------------------------------------------------------------- /tests/UseCase/Phpspec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/Phpspec.php -------------------------------------------------------------------------------- /tests/UseCase/Phpspec/Regression/Case1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/Phpspec/Regression/Case1.php -------------------------------------------------------------------------------- /tests/UseCase/Phpspec/Regression/Case1/file.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/Phpspec/Regression/Case1/file.php.txt -------------------------------------------------------------------------------- /tests/UseCase/Phpspec/Regression/Case2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/Phpspec/Regression/Case2.php -------------------------------------------------------------------------------- /tests/UseCase/Phpspec/Regression/Case2/file.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/Phpspec/Regression/Case2/file.php.txt -------------------------------------------------------------------------------- /tests/UseCase/Phpspec/Regression/Case3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/Phpspec/Regression/Case3.php -------------------------------------------------------------------------------- /tests/UseCase/UselessCodeAfterReturn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/UselessCodeAfterReturn.php -------------------------------------------------------------------------------- /tests/UseCase/UselessCodeAfterReturn/Regression/Case1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/UselessCodeAfterReturn/Regression/Case1.php -------------------------------------------------------------------------------- /tests/UseCase/UselessCodeAfterReturn/Regression/Case1/file.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedroTroller/PhpCSFixer-Custom-Fixers/HEAD/tests/UseCase/UselessCodeAfterReturn/Regression/Case1/file.php.txt --------------------------------------------------------------------------------