From 982d8dea4027e3e81368655ecc21771bc7a6eb63 Mon Sep 17 00:00:00 2001 From: Filippo Tessarotto Date: Tue, 22 Aug 2017 16:47:13 +0200 Subject: [PATCH] README.md: drop SlamCsFixer\NoUnneededFinalMethodFixer --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 6c4a20f..4186c51 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,6 @@ $config->registerCustomFixers(array( new SlamCsFixer\FinalInternalClassFixer(), new SlamCsFixer\FunctionReferenceSpaceFixer(), new SlamCsFixer\InlineCommentSpacerFixer(), - new SlamCsFixer\NoUnneededFinalMethodFixer(), new SlamCsFixer\PhpFileOnlyProxyFixer(new PhpCsFixer\Fixer\Basic\BracesFixer()), new SlamCsFixer\Utf8Fixer(), )); @@ -38,7 +37,6 @@ $this->setRules(array( 'Slam/final_internal_class' => true, 'Slam/function_reference_space' => true, 'Slam/inline_comment_spacer' => true, - 'Slam/no_unneeded_final_method' => true, 'Slam/php_only_braces' => true, 'Slam/utf8' => true, )); @@ -50,5 +48,4 @@ $config->getFinder() ; return $config; - ```