lib/Ajde/Template/Parser/Xhtml/Element.php

Summary

Maintainability
A
0 mins
Test Coverage

Missing class import via use statement (line '19', column '23').
Open

            throw new Ajde_Exception("No variable with name '".$variableName."' assigned to template.", 90019);

MissingImport

Since: 2.7.0

Importing all external classes in a file through use statements makes them clearly visible.

Example

function make() {
    return new \stdClass();
}

Source http://phpmd.org/rules/cleancode.html#MissingImport

Avoid using static access to class 'Ajde_Component' in method 'processComponent'.
Open

        $component = Ajde_Component::fromNode($parser, $this);

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_Template_Parser_Xhtml_Element is not named in CamelCase.
Open

class Ajde_Template_Parser_Xhtml_Element extends DOMElement
{
    public function inACNameSpace()
    {
        return substr($this->nodeName, 0, 3) === Ajde_Component::AC_XMLNS.':';

CamelCaseClassName

Since: 0.2

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

Example

class class_name {
}

Source

There are no issues that match your filters.

Category
Status