lib/Ajde/Crud/Field/Text.php

Summary

Maintainability
A
0 mins
Test Coverage

Avoid using static access to class 'Ajde_Component_String' in method '_getHtmlAttributes'.
Open

        $attributes['maxlength'] = Ajde_Component_String::escape($this->getLength());
Severity: Minor
Found in lib/Ajde/Crud/Field/Text.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 'Ajde_Component_String' in method '_getHtmlAttributes'.
Open

        $attributes['value'] = Ajde_Component_String::escape($this->getValue());
Severity: Minor
Found in lib/Ajde/Crud/Field/Text.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

The class Ajde_Crud_Field_Text is not named in CamelCase.
Open

class Ajde_Crud_Field_Text extends Ajde_Crud_Field
{
    protected function _getHtmlAttributes()
    {
        $attributes = [];
Severity: Minor
Found in lib/Ajde/Crud/Field/Text.php by phpmd

CamelCaseClassName

Since: 0.2

It is considered best practice to use the CamelCase notation to name classes.

Example

class class_name {
}

Source

The method _getHtmlAttributes is not named in camelCase.
Open

    protected function _getHtmlAttributes()
    {
        $attributes = [];
        $attributes['type'] = 'text';
        $attributes['value'] = Ajde_Component_String::escape($this->getValue());
Severity: Minor
Found in lib/Ajde/Crud/Field/Text.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