diff --git a/src/RuleSet/Sets/RelaxPlus.php b/src/RuleSet/Sets/RelaxPlus.php index b7c2d50..97a4a94 100644 --- a/src/RuleSet/Sets/RelaxPlus.php +++ b/src/RuleSet/Sets/RelaxPlus.php @@ -28,7 +28,6 @@ public function mainRules(): array 'explicit_string_variable' => true, 'no_superfluous_elseif' => true, 'php_unit_fqcn_annotation' => true, - 'php_unit_method_casing' => true, 'string_implicit_backslashes' => true, 'general_phpdoc_annotation_remove' => [ 'annotations' => [ diff --git a/tests/Fixtures/Ruleset/relaxplus_actual.php b/tests/Fixtures/Ruleset/relaxplus_actual.php index 0b61e41..7d64760 100644 --- a/tests/Fixtures/Ruleset/relaxplus_actual.php +++ b/tests/Fixtures/Ruleset/relaxplus_actual.php @@ -45,11 +45,6 @@ public function customFixer__NoPhpStormGeneratedCommentFixer() {} class MyTest extends \PhpUnit\FrameWork\TestCase { - /** - * php_unit_method_casing - */ - public function test_my_code() {} - /** * @covers Project\NameSpace\Something * @coversDefaultClass Project\Default diff --git a/tests/Fixtures/Ruleset/relaxplus_expected.php b/tests/Fixtures/Ruleset/relaxplus_expected.php index 4dde5d7..77cfa43 100644 --- a/tests/Fixtures/Ruleset/relaxplus_expected.php +++ b/tests/Fixtures/Ruleset/relaxplus_expected.php @@ -39,11 +39,6 @@ public function customFixer__NoPhpStormGeneratedCommentFixer() {} class MyTest extends \PhpUnit\FrameWork\TestCase { - /** - * php_unit_method_casing - */ - public function testMyCode() {} - /** * @covers \Project\NameSpace\Something *