10000 Implement LongMethodName by kylekatarnls · Pull Request #1045 · phpmd/phpmd · GitHub
[go: up one dir, main page]

Skip to content

Implement LongMethodName #1045

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 6 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Use FQCN for @Covers annotations
  • Loading branch information
kylekatarnls committed Dec 10, 2023
commit 90b85db062f7cacc28a5d9e2f8626fded2a2c9fb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* Test case for the {@link \PHPMD\Rule\Naming\BooleanGetMethodName} rule class.
*
* @covers PHPMD\Rule\Naming\BooleanGetMethodName
* @covers \PHPMD\Rule\Naming\BooleanGetMethodName
*/
class BooleanGetMethodNameTest extends AbstractTest
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* Test case for the constructor name rule.
*
* @covers PHPMD\Rule\Naming\ConstantNamingConventions
* @cover 8000 s \PHPMD\Rule\Naming\ConstantNamingConventions
*/
class ConstantNamingConventionsTest extends AbstractTest
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* Test case for the constructor name rule.
*
* @covers PHPMD\Rule\Naming\ConstructorWithNameAsEnclosingClass
* @covers \PHPMD\Rule\Naming\ConstructorWithNameAsEnclosingClass
*/
class ConstructorWithNameAsEnclosingClassTest extends AbstractTest
{
Expand Down
2 changes: 1 addition & 1 deletion src/test/php/PHPMD/Rule/Naming/LongVariableTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* Test case for the really long variable, parameter and property name rule.
*
* @covers PHPMD\Rule\Naming\LongVariable
* @covers \PHPMD\Rule\Naming\LongVariable
*/
class LongVariableTest extends AbstractTest
{
Expand Down
2 changes: 1 addition & 1 deletion src/test/php/PHPMD/Rule/Naming/ShortMethodNameTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* Test case for the very short method and function name rule.
*
* @covers PHPMD\Rule\Naming\ShortMethodName
* @covers \PHPMD\Rule\Naming\ShortMethodName
*/
class ShortMethodNameTest extends AbstractTest
{
Expand Down
2 changes: 1 addition & 1 deletion src/test/php/PHPMD/Rule/Naming/ShortVariableTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* Test case for the really short variable, parameter and property name rule.
*
* @covers PHPMD\Rule\Naming\ShortVariable
* @covers \PHPMD\Rule\Naming\ShortVariable
*/
class ShortVariableTest extends AbstractTest
{
Expand Down
0