jaroslavtyc/drd-plus-professions

View on GitHub
tests/Professions/ProfessionTest.php

Summary

Maintainability
A
0 mins
Test Coverage

Avoid using static access to class '\DrdPlus\Codes\Properties\PropertyCode' in method 'I_can_detect_primary_property'.
Open

            $profession->isPrimaryProperty(PropertyCode::getIt($propertyCode)),
Severity: Minor
Found in tests/Professions/ProfessionTest.php by phpmd

StaticAccess

Since: 1.4.0

Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

Example

class Foo
{
    public function bar()
    {
        Bar::baz();
    }
}

Source https://phpmd.org/rules/cleancode.html#staticaccess

Avoid using static access to class '\DrdPlus\Codes\ProfessionCode' in method 'I_can_create_every_profession_by_code'.
Open

        foreach (ProfessionCode::getPossibleValues() as $professionCode) {
Severity: Minor
Found in tests/Professions/ProfessionTest.php by phpmd

StaticAccess

Since: 1.4.0

Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

Example

class Foo
{
    public function bar()
    {
        Bar::baz();
    }
}

Source https://phpmd.org/rules/cleancode.html#staticaccess

Avoid using static access to class '\DrdPlus\Codes\ProfessionCode' in method 'I_can_create_every_profession_by_code'.
Open

            $profession = Profession::getItByCode(ProfessionCode::getIt($professionCode));
Severity: Minor
Found in tests/Professions/ProfessionTest.php by phpmd

StaticAccess

Since: 1.4.0

Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

Example

class Foo
{
    public function bar()
    {
        Bar::baz();
    }
}

Source https://phpmd.org/rules/cleancode.html#staticaccess

Avoid using static access to class '\DrdPlus\Professions\Profession' in method 'I_can_create_every_profession_by_code'.
Open

            $profession = Profession::getItByCode(ProfessionCode::getIt($professionCode));
Severity: Minor
Found in tests/Professions/ProfessionTest.php by phpmd

StaticAccess

Since: 1.4.0

Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

Example

class Foo
{
    public function bar()
    {
        Bar::baz();
    }
}

Source https://phpmd.org/rules/cleancode.html#staticaccess

Avoid using static access to class '\DrdPlus\Codes\ProfessionCode' in method 'getExpectedPrimaryProperties'.
Open

            $professionPrimaryPropertiesTable->getPrimaryPropertiesOf(ProfessionCode::getIt($this->getProfessionName()))
Severity: Minor
Found in tests/Professions/ProfessionTest.php by phpmd

StaticAccess

Since: 1.4.0

Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

Example

class Foo
{
    public function bar()
    {
        Bar::baz();
    }
}

Source https://phpmd.org/rules/cleancode.html#staticaccess

Avoid using static access to class '\DrdPlus\Professions\Profession' in method 'I_can_not_create_profession_by_unknown_code'.
Open

        Profession::getItByCode($professionCode);
Severity: Minor
Found in tests/Professions/ProfessionTest.php by phpmd

StaticAccess

Since: 1.4.0

Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

Example

class Foo
{
    public function bar()
    {
        Bar::baz();
    }
}

Source https://phpmd.org/rules/cleancode.html#staticaccess

Avoid excessively long variable names like $professionPrimaryPropertiesTable. Keep variable name length under 20.
Open

        $professionPrimaryPropertiesTable = new ProfessionPrimaryPropertiesTable();
Severity: Minor
Found in tests/Professions/ProfessionTest.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

Source https://phpmd.org/rules/naming.html#longvariable

The method I_can_create_every_profession_by_code is not named in camelCase.
Open

    public function I_can_create_every_profession_by_code()
    {
        foreach (ProfessionCode::getPossibleValues() as $professionCode) {
            $profession = Profession::getItByCode(ProfessionCode::getIt($professionCode));
            $namespace = str_replace('Tests\\', '', __NAMESPACE__);
Severity: Minor
Found in tests/Professions/ProfessionTest.php by phpmd

CamelCaseMethodName

Since: 0.2

It is considered best practice to use the camelCase notation to name methods.

Example

class ClassName {
    public function get_name() {
    }
}

Source

The method I_can_create_profession_and_get_its_code is not named in camelCase.
Open

    public function I_can_create_profession_and_get_its_code(): Profession
    {
        $professionClass = self::getSutClass();
        /** @var Profession|Fighter $professionClass */
        $profession = $professionClass::getIt();
Severity: Minor
Found in tests/Professions/ProfessionTest.php by phpmd

CamelCaseMethodName

Since: 0.2

It is considered best practice to use the camelCase notation to name methods.

Example

class ClassName {
    public function get_name() {
    }
}

Source

The method I_can_get_profession_code is not named in camelCase.
Open

    public function I_can_get_profession_code()
    {
        $professionClass = self::getSutClass();
        /** @var Profession|Fighter $professionClass */
        $profession = $professionClass::getIt();
Severity: Minor
Found in tests/Professions/ProfessionTest.php by phpmd

CamelCaseMethodName

Since: 0.2

It is considered best practice to use the camelCase notation to name methods.

Example

class ClassName {
    public function get_name() {
    }
}

Source

The method I_can_not_create_profession_by_unknown_code is not named in camelCase.
Open

    public function I_can_not_create_profession_by_unknown_code()
    {
        $this->expectException(\DrdPlus\Professions\Exceptions\ProfessionNotFound::class);
        /** @var ProfessionCode|\Mockery\MockInterface $professionCode */
        $professionCode = $this->mockery(ProfessionCode::class);
Severity: Minor
Found in tests/Professions/ProfessionTest.php by phpmd

CamelCaseMethodName

Since: 0.2

It is considered best practice to use the camelCase notation to name methods.

Example

class ClassName {
    public function get_name() {
    }
}

Source

The method I_can_get_primary_properties is not named in camelCase.
Open

    public function I_can_get_primary_properties()
    {
        $professionClass = self::getSutClass();
        /** @var Profession|Fighter $professionClass */
        $profession = $professionClass::getIt();
Severity: Minor
Found in tests/Professions/ProfessionTest.php by phpmd

CamelCaseMethodName

Since: 0.2

It is considered best practice to use the camelCase notation to name methods.

Example

class ClassName {
    public function get_name() {
    }
}

Source

The method I_can_detect_primary_property is not named in camelCase.
Open

    public function I_can_detect_primary_property($propertyCode, $shouldBePrimary)
    {
        $professionClass = self::getSutClass();
        /** @var Profession|Fighter $professionClass */
        $profession = $professionClass::getIt();
Severity: Minor
Found in tests/Professions/ProfessionTest.php by phpmd

CamelCaseMethodName

Since: 0.2

It is considered best practice to use the camelCase notation to name methods.

Example

class ClassName {
    public function get_name() {
    }
}

Source

There are no issues that match your filters.

Category
Status