YetiForceCompany/YetiForceCRM

View on GitHub
modules/Vtiger/models/Utility.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Missing class import via use statement (line '28', column '15').
Open

        return (new App\Db\Query())->from('vtiger_profile2utility')
Severity: Minor
Found in modules/Vtiger/models/Utility.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

Call to undeclared method \App\Db\Query::from
Open

        return (new App\Db\Query())->from('vtiger_profile2utility')
Severity: Critical
Found in modules/Vtiger/models/Utility.php by phan

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

class Vtiger_Utility_Model extends Vtiger_Action_Model

The class Vtiger_Utility_Model is not named in CamelCase.
Open

class Vtiger_Utility_Model extends Vtiger_Action_Model
{
    public function isUtilityTool()
    {
        return true;
Severity: Minor
Found in modules/Vtiger/models/Utility.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

    public function isUtilityTool()

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

        return true;

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

    {

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

    }

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

        }

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

            ->where(['tabid' => $tabId, 'activityid' => $this->getId()])

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

            return false;

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

    public function isModuleEnabled($module)

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

        $tabId = $module->getId();

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

    {

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

        if (!$module->isEntityModule() && !$module->isUtilityActionEnabled()) {

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

        return (new App\Db\Query())->from('vtiger_profile2utility')

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

            ->exists();

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

    }

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

class Vtiger_Utility_Model extends Vtiger_Action_Model

There are no issues that match your filters.

Category
Status