rugk/xenforo-threema-gateway

View on GitHub
src/library/ThreemaGateway/Handler/Action/KeyConverter.php

Summary

Maintainability
A
0 mins
Test Coverage

Avoid using static access to class 'ThreemaGateway_Helper_Key' in method 'hexToBin'.
Open

        $keyHex = ThreemaGateway_Helper_Key::removeSuffix($keyHex);

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 class names like ThreemaGateway_Handler_Action_KeyConverter. Keep class name length under 40.
Open

class ThreemaGateway_Handler_Action_KeyConverter extends ThreemaGateway_Handler_Action_Abstract
{
    /**
     * Converts a key from hex to binary format.
     *

LongClassName

Since: 2.9

Detects when classes or interfaces are declared with excessively long names.

Example

class ATooLongClassNameThatHintsAtADesignProblem {

}

interface ATooLongInterfaceNameThatHintsAtADesignProblem {

}

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

There are no issues that match your filters.

Category
Status