YetiForceCompany/YetiForceCRM

View on GitHub
modules/OSSEmployees/views/Detail.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Reference to undeclared class \Vtiger_Detail_View
Open

        $headerScriptInstances = parent::getFooterScripts($request);
Severity: Critical
Found in modules/OSSEmployees/views/Detail.php by phan

Class extends undeclared class \Vtiger_Detail_View
Open

class OSSEmployees_Detail_View extends Vtiger_Detail_View
Severity: Critical
Found in modules/OSSEmployees/views/Detail.php by phan

Call to undeclared method \OSSEmployees_Detail_View::checkAndConvertJsScripts
Open

        return array_merge($headerScriptInstances, $this->checkAndConvertJsScripts($jsFileNames));
Severity: Critical
Found in modules/OSSEmployees/views/Detail.php by phan

Reference to undeclared class \Vtiger_Detail_View
Open

        parent::__construct();
Severity: Critical
Found in modules/OSSEmployees/views/Detail.php by phan

Call to undeclared method \OSSEmployees_Detail_View::exposeMethod
Open

        $this->exposeMethod('showRelatedRecords');
Severity: Critical
Found in modules/OSSEmployees/views/Detail.php by phan

Avoid excessively long variable names like $headerScriptInstances. Keep variable name length under 20.
Open

        $headerScriptInstances = parent::getFooterScripts($request);
Severity: Minor
Found in modules/OSSEmployees/views/Detail.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

Source https://phpmd.org/rules/naming.html#longvariable

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

class OSSEmployees_Detail_View extends Vtiger_Detail_View

The class OSSEmployees_Detail_View is not named in CamelCase.
Open

class OSSEmployees_Detail_View extends Vtiger_Detail_View
{
    /** {@inheritdoc} */
    public function __construct()
    {
Severity: Minor
Found in modules/OSSEmployees/views/Detail.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

        $this->exposeMethod('showRelatedRecords');

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

        $moduleName = $request->getModule();

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

            "modules.$moduleName.resources.Detail",

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

        $jsFileNames[] = $moduleEditFile;

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

    /** {@inheritdoc} */

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

    }

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

        unset($headerScriptInstances[$moduleEditFile], $headerScriptInstances[$moduleDetailFile]);

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

    }

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

        return array_merge($headerScriptInstances, $this->checkAndConvertJsScripts($jsFileNames));

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

    public function getFooterScripts(App\Request $request)

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

        //Added to remove the module specific js, as they depend on inventory files

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

        parent::__construct();

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

    public function __construct()

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

        $jsFileNames = [

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

        $moduleEditFile = 'modules.' . $moduleName . '.resources.Edit';

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

    {

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

    /** {@inheritdoc} */

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

        $headerScriptInstances = parent::getFooterScripts($request);

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

    {

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

        $moduleDetailFile = 'modules.' . $moduleName . '.resources.Detail';

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

        ];

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

class OSSEmployees_Detail_View extends Vtiger_Detail_View

There are no issues that match your filters.

Category
Status