lib/Ajde/Core/ExternalLibs.php

Summary

Maintainability
A
0 mins
Test Coverage

Missing class import via use statement (line '26', column '29').
Open

            $purifier = new HTMLPurifier();
Severity: Minor
Found in lib/Ajde/Core/ExternalLibs.php by phpmd

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 'Config' in method 'setOverride'.
Open

        $config = Config::getInstance();
Severity: Minor
Found in lib/Ajde/Core/ExternalLibs.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_Core_ExternalLibs is not named in CamelCase.
Open

class Ajde_Core_ExternalLibs extends Ajde_Object_Singleton
{
    /**
     * @staticvar Ajde_Application $instance
     *
Severity: Minor
Found in lib/Ajde/Core/ExternalLibs.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 __bootstrap is not named in camelCase.
Open

    public function __bootstrap()
    {
        if (file_exists(LOCAL_ROOT.LIB_DIR.'HTMLPurifier/HTMLPurifier.auto.php')) {
            require_once LOCAL_ROOT.LIB_DIR.'HTMLPurifier/HTMLPurifier.auto.php';
            // Optional components still need to be included--you'll know if you try to
Severity: Minor
Found in lib/Ajde/Core/ExternalLibs.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