YetiForceCompany/YetiForceCRM

View on GitHub
modules/Calendar/actions/Calendar.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

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

        $response = new Vtiger_Response();
Severity: Minor
Found in modules/Calendar/actions/Calendar.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

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

        } else {
            $entity = array_merge($record->getEntity(), $record->getPublicHolidays());
        }
Severity: Minor
Found in modules/Calendar/actions/Calendar.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

Define a constant instead of duplicating this literal "customFilter" 3 times.
Open

            if ($request->has('customFilter')) {
Severity: Critical
Found in modules/Calendar/actions/Calendar.php by sonar-php

Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

Noncompliant Code Example

With the default threshold of 3:

function run() {
  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
  execute('action1');
  release('action1');
}

Compliant Solution

ACTION_1 = 'action1';

function run() {
  prepare(ACTION_1);
  execute(ACTION_1);
  release(ACTION_1);
}

Exceptions

To prevent generating some false-positives, literals having less than 5 characters are excluded.

Call to undeclared method \Vtiger_Calendar_Model::getEntityCount
Open

            $entity = array_merge($record->getEntityCount(), $record->getPublicHolidays());
Severity: Critical
Found in modules/Calendar/actions/Calendar.php by phan

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

class Calendar_Calendar_Action extends Vtiger_Calendar_Action

The class Calendar_Calendar_Action is not named in CamelCase.
Open

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

        $response->setResult($entity);

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

    public function getEvents(App\Request $request)

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

            }

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

            $entity = array_merge($record->getEntity(), $record->getPublicHolidays());

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

        $response->emit();

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

        if ($request->getBoolean('widget')) {

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

                $record->set('customFilter', $request->getByType('customFilter', 2));

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

        $record = $this->getCalendarModel($request);

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

            if ($request->has('customFilter')) {

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

            $entity = array_merge($record->getEntityCount(), $record->getPublicHolidays());

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

        } else {

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

class Calendar_Calendar_Action extends Vtiger_Calendar_Action

There are no issues that match your filters.

Category
Status