YetiForceCompany/YetiForceCRM

View on GitHub
modules/Calendar/crons/RecurringEvents.php

Summary

Maintainability
A
0 mins
Test Coverage
A
90%

Missing class import via use statement (line '20', column '22').
Open

        $dataReader = (new App\Db\Query())->select(['followup'])

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 'Calendar_RecuringEvents_Model' in method 'process'.
Open

        $recurringEvents = Calendar_RecuringEvents_Model::getInstance();

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

Define a constant instead of duplicating this literal "followup" 4 times.
Open

        $dataReader = (new App\Db\Query())->select(['followup'])

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 \App\Db\Query::select
Open

        $dataReader = (new App\Db\Query())->select(['followup'])
Severity: Critical
Found in modules/Calendar/crons/RecurringEvents.php by phan

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

class Calendar_RecurringEvents_Cron extends \App\CronHandler

The class Calendar_RecurringEvents_Cron is not named in CamelCase.
Open

class Calendar_RecurringEvents_Cron extends \App\CronHandler
{
    /** {@inheritdoc} */
    public function process()
    {

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

            ->where([

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

                ['vtiger_crmentity.setype' => 'Calendar'],

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

                ['vtiger_crmentity.deleted' => 0],

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

                ['NOT', ['vtiger_activity.recurrence' => null]],

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

        $dataReader->close();

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

            ])->distinct('followup')->createCommand()->query();

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

            }

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

                $recurringEvents->updateNeverEndingEvents($row['followup']);

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

    {

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

            ->from('vtiger_activity')

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

            if (!empty($row['followup'])) {

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

            ->innerJoin('vtiger_crmentity', 'vtiger_crmentity.crmid = vtiger_activity.activityid')

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

                'and',

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

    public function process()

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

    }

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

        $dataReader = (new App\Db\Query())->select(['followup'])

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

                ['not like', 'vtiger_activity.recurrence', ['UNTIL', 'COUNT']],

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

        }

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

                ['vtiger_activity.reapeat' => 1],

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

        while ($row = $dataReader->read()) {

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

class Calendar_RecurringEvents_Cron extends \App\CronHandler

There are no issues that match your filters.

Category
Status