YetiForceCompany/YetiForceCRM

View on GitHub
modules/Settings/PDF/views/List.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

The method preProcess has a boolean flag argument $display, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function preProcess(App\Request $request, $display = true)
Severity: Minor
Found in modules/Settings/PDF/views/List.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

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

Avoid using static access to class 'Settings_PDF_Module_Model' in method 'preProcess'.
Open

        $viewer->assign('SUPPORTED_MODULE_MODELS', Settings_PDF_Module_Model::getSupportedModules());
Severity: Minor
Found in modules/Settings/PDF/views/List.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

Call to undeclared method \Vtiger_Viewer::assign
Open

        $viewer->assign('SUPPORTED_MODULE_MODELS', Settings_PDF_Module_Model::getSupportedModules());
Severity: Critical
Found in modules/Settings/PDF/views/List.php by phan

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

class Settings_PDF_List_View extends Settings_Vtiger_List_View

The class Settings_PDF_List_View is not named in CamelCase.
Open

class Settings_PDF_List_View extends Settings_Vtiger_List_View
{
    public function preProcess(App\Request $request, $display = true)
    {
        $viewer = $this->getViewer($request);
Severity: Minor
Found in modules/Settings/PDF/views/List.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

Spaces must be used to indent lines; tabs are not allowed
Open

    {

Spaces must be used to indent lines; tabs are not allowed
Open

        $viewer = $this->getViewer($request);

Spaces must be used to indent lines; tabs are not allowed
Open

        parent::preProcess($request, $display);

Spaces must be used to indent lines; tabs are not allowed
Open

        $viewer->assign('SUPPORTED_MODULE_MODELS', Settings_PDF_Module_Model::getSupportedModules());

Spaces must be used to indent lines; tabs are not allowed
Open

    }

Spaces must be used to indent lines; tabs are not allowed
Open

    public function preProcess(App\Request $request, $display = true)

Class name "Settings_PDF_List_View" is not in camel caps format
Open

class Settings_PDF_List_View extends Settings_Vtiger_List_View

There are no issues that match your filters.

Category
Status