YetiForceCompany/YetiForceCRM

View on GitHub
modules/Calendar/actions/Delete.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();
Severity: Minor
Found in modules/Calendar/actions/Delete.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

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

            $response->setResult(['notify' => ['type' => 'success', 'text' => \App\Language::translate('LBL_RECORD_HAS_BEEN_DELETED')]]);
Severity: Minor
Found in modules/Calendar/actions/Delete.php by phpmd

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 {
            $response->setResult($this->record->getModule()->getListViewUrl());
        }
Severity: Minor
Found in modules/Calendar/actions/Delete.php by phpmd

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

Avoid using static access to class 'Calendar_RecuringEvents_Model' in method 'process'.
Open

        $recurringEvents = Calendar_RecuringEvents_Model::getInstance();
Severity: Minor
Found in modules/Calendar/actions/Delete.php by phpmd

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 Calendar_Delete_Action extends Vtiger_Delete_Action

The class Calendar_Delete_Action is not named in CamelCase.
Open

class Calendar_Delete_Action extends Vtiger_Delete_Action
{
    /** {@inheritdoc} */
    public function process(App\Request $request)
    {
Severity: Minor
Found in modules/Calendar/actions/Delete.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

        $recurringEvents->templateRecordId = $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

    public function process(App\Request $request)

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

        $this->record->delete();

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

        }

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

            $typeRemove = $request->getInteger('typeRemove');

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->emit();

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

        if ('List' === $request->getByType('sourceView')) {

Line exceeds 120 characters; contains 137 characters
Open

            $response->setResult(['notify' => ['type' => 'success', 'text' => \App\Language::translate('LBL_RECORD_HAS_BEEN_DELETED')]]);

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

        $recurringEvents->typeSaving = $typeRemove;

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

        $recurringEvents->delete();

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

        $typeRemove = Calendar_RecuringEvents_Model::UPDATE_THIS_EVENT;

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

        if (!$request->isEmpty('typeRemove')) {

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

    }

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

            $response->setResult(['notify' => ['type' => 'success', 'text' => \App\Language::translate('LBL_RECORD_HAS_BEEN_DELETED')]]);

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

        $recurringEvents = Calendar_RecuringEvents_Model::getInstance();

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

        $recurringEvents->recordModel = $this->record;

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

            $response->setResult($this->record->getModule()->getListViewUrl());

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

class Calendar_Delete_Action extends Vtiger_Delete_Action

There are no issues that match your filters.

Category
Status