mambax7/alumni-26x

View on GitHub
preloads/preload.php

Summary

Maintainability
A
0 mins
Test Coverage

Avoid unused parameters such as '$args'.
Open

    public static function eventCoreIncludeCommonClassmaps($args)
Severity: Minor
Found in preloads/preload.php by phpmd

UnusedFormalParameter

Since: 0.2

Avoid passing parameters to methods or constructors and then not using those parameters.

Example

class Foo
{
    private function bar($howdy)
    {
        // $howdy is not used
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

Avoid using static access to class 'XoopsLoad' in method 'eventCoreIncludeCommonClassmaps'.
Open

        XoopsLoad::addMap([
                              'alumnimetagen' => $path . '/class/metagen.php',
                              'alumni'        => $path . '/class/helper.php',
                              //    'alumniutils' => $path . '/class/utils.php',
                              //     'alumniblockform' => $path . '/class/blockform.php',
Severity: Minor
Found in preloads/preload.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

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

class AlumniPreload extends PreloadItem
Severity: Minor
Found in preloads/preload.php by phpcodesniffer

There are no issues that match your filters.

Category
Status