XoopsModules25x/xoopsinfo

View on GitHub
phpsysinfo/includes/output/class.Output.inc.php

Summary

Maintainability
A
0 mins
Test Coverage

Avoid using static access to class 'PSI_Error' in method '__construct'.
Open

        $this->error = PSI_Error::singleton();

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 'CommonFunctions' in method '__construct'.
Open

        CommonFunctions::checkForExtensions();

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

Each class must be in a namespace of at least one level (a top-level vendor name)
Open

abstract class Output

Method name "_checkConfig" should not be prefixed with an underscore to indicate visibility
Open

    private function _checkConfig()

Line exceeds 120 characters; contains 132 characters
Open

 * @license   http://opensource.org/licenses/gpl-2.0.php GNU General Public License version 2, or (at your option) any later version

Line exceeds 120 characters; contains 132 characters
Open

 * @license   http://opensource.org/licenses/gpl-2.0.php GNU General Public License version 2, or (at your option) any later version

The method _checkConfig is not named in camelCase.
Open

    private function _checkConfig()
    {
        include_once PSI_APP_ROOT.'/read_config.php';

        if ($this->error->errorsExist()) {

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