lib/Ajde/Crud/Field/Date.php

Summary

Maintainability
A
0 mins
Test Coverage

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/Date.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 method _getHtmlAttributes uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

        } else {
            if ($this->getValue()) {
                $attributes['value'] = Ajde_Component_String::escape(date('Y-m-d', strtotime($this->getValue())));
            }
            $attributes['type'] = 'date';
Severity: Minor
Found in lib/Ajde/Crud/Field/Date.php by phpmd

ElseExpression

Since: 1.4.0

An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

Example

class Foo
{
    public function bar($flag)
    {
        if ($flag) {
            // one branch
        } else {
            // another branch
        }
    }
}

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

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

                $attributes['value'] = Ajde_Component_String::escape(date('Y-m-d', strtotime($this->getValue())));
Severity: Minor
Found in lib/Ajde/Crud/Field/Date.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_Date is not named in CamelCase.
Open

class Ajde_Crud_Field_Date extends Ajde_Crud_Field
{
    protected function prepare()
    {
        if (
Severity: Minor
Found in lib/Ajde/Crud/Field/Date.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 = [];
        if ($this->hasReadonly() && $this->getReadonly() === true) {
            $attributes['value'] = Ajde_Component_String::escape($this->getValue());
Severity: Minor
Found in lib/Ajde/Crud/Field/Date.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