Skip to content

Commit

Permalink
relaxplus: Remove php_unit_method_casing
Browse files Browse the repository at this point in the history
  • Loading branch information
realodix committed Jul 30, 2024
1 parent cd908c8 commit 0ddd95c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 11 deletions.
1 change: 0 additions & 1 deletion src/RuleSet/Sets/RelaxPlus.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' => [
Expand Down
5 changes: 0 additions & 5 deletions tests/Fixtures/Ruleset/relaxplus_actual.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 0 additions & 5 deletions tests/Fixtures/Ruleset/relaxplus_expected.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*
Expand Down

0 comments on commit 0ddd95c

Please sign in to comment.