YetiForceCompany/YetiForceCRM

View on GitHub
modules/Settings/Vtiger/actions/Delete.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Avoid using static access to class 'Settings_Vtiger_Tracker_Model' in method '__construct'.
Open

        Settings_Vtiger_Tracker_Model::addBasic('delete');

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

Avoid using static access to class 'Settings_Vtiger_Tracker_Model' in method '__construct'.
Open

        Settings_Vtiger_Tracker_Model::setRecordId(\App\Request::_get('record'));

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

Avoid using static access to class '\App\Request' in method '__construct'.
Open

        Settings_Vtiger_Tracker_Model::setRecordId(\App\Request::_get('record'));

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 Settings_Vtiger_Delete_Action extends \App\Controller\Action

The class Settings_Vtiger_Delete_Action is not named in CamelCase.
Open

class Settings_Vtiger_Delete_Action extends \App\Controller\Action
{
    use \App\Controller\Traits\SettingsPermission;

    public function __construct()

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

        Settings_Vtiger_Tracker_Model::addBasic('delete');

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

        parent::__construct();

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

    use \App\Controller\Traits\SettingsPermission;

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

    {

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

        Settings_Vtiger_Tracker_Model::setRecordId(\App\Request::_get('record'));

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

class Settings_Vtiger_Delete_Action extends \App\Controller\Action

There are no issues that match your filters.

Category
Status