YetiForceCompany/YetiForceCRM

View on GitHub
modules/Settings/Updates/models/Module.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%

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

        return (new App\Db\Query())->from('yetiforce_updates')->orderBy(['id' => SORT_DESC])->all();

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('yetiforce_updates')->orderBy(['id' => SORT_DESC])->all();
Severity: Critical
Found in modules/Settings/Updates/models/Module.php by phan

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

class Settings_Updates_Module_Model extends Settings_Vtiger_Module_Model

The class Settings_Updates_Module_Model is not named in CamelCase.
Open

class Settings_Updates_Module_Model extends Settings_Vtiger_Module_Model
{
    public static function getUpdates()
    {
        return (new App\Db\Query())->from('yetiforce_updates')->orderBy(['id' => SORT_DESC])->all();

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 static function getUpdates()

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

        return (new App\Db\Query())->from('yetiforce_updates')->orderBy(['id' => SORT_DESC])->all();

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

class Settings_Updates_Module_Model extends Settings_Vtiger_Module_Model

There are no issues that match your filters.

Category
Status