YetiForceCompany/YetiForceCRM

View on GitHub
modules/Settings/FieldsDependency/actions/DeleteAjax.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Missing class import via use statement (line '27', column '19').
Open

        $response = new Vtiger_Response();

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

Avoid using static access to class '\App\Log' in method 'process'.
Open

            \App\Log::error('Not found Fields Dependency record with this id :' . $request->getInteger('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 'Settings_FieldsDependency_Record_Model' in method 'process'.
Open

        $recordModel = Settings_FieldsDependency_Record_Model::getInstanceById($request->getInteger('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

The method process uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

        } else {
            $result = ['success' => false];
            \App\Log::error('Not found Fields Dependency record with this id :' . $request->getInteger('record'));
        }

ElseExpression

Since: 1.4.0

An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

Example

class Foo
{
    public function bar($flag)
    {
        if ($flag) {
            // one branch
        } else {
            // another branch
        }
    }
}

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

Call to method error from undeclared class \App\Log
Open

            \App\Log::error('Not found Fields Dependency record with this id :' . $request->getInteger('record'));

Call to method getInstanceById from undeclared class \Settings_FieldsDependency_Record_Model
Open

        $recordModel = Settings_FieldsDependency_Record_Model::getInstanceById($request->getInteger('record'));

Avoid excessively long class names like Settings_FieldsDependency_DeleteAjax_Action. Keep class name length under 40.
Open

class Settings_FieldsDependency_DeleteAjax_Action extends Settings_Vtiger_Delete_Action
{
    /** {@inheritdoc} */
    public function process(App\Request $request)
    {

LongClassName

Since: 2.9

Detects when classes or interfaces are declared with excessively long names.

Example

class ATooLongClassNameThatHintsAtADesignProblem {

}

interface ATooLongInterfaceNameThatHintsAtADesignProblem {

}

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

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

class Settings_FieldsDependency_DeleteAjax_Action extends Settings_Vtiger_Delete_Action

The class Settings_FieldsDependency_DeleteAjax_Action is not named in CamelCase.
Open

class Settings_FieldsDependency_DeleteAjax_Action extends Settings_Vtiger_Delete_Action
{
    /** {@inheritdoc} */
    public function process(App\Request $request)
    {

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 process(App\Request $request)

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

        $recordModel = Settings_FieldsDependency_Record_Model::getInstanceById($request->getInteger('record'));

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

        } else {

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

            $result = ['success' => $recordModel->delete()];

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

            $result = ['success' => false];

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

    }

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

        $response->setResult($result);

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

            \App\Log::error('Not found Fields Dependency record with this id :' . $request->getInteger('record'));

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

        $response = new Vtiger_Response();

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

        $response->emit();

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

        if ($recordModel) {

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

class Settings_FieldsDependency_DeleteAjax_Action extends Settings_Vtiger_Delete_Action

There are no issues that match your filters.

Category
Status