YetiForceCompany/YetiForceCRM

View on GitHub
modules/Vtiger/crons/IntegrationWapro.php

Summary

Maintainability
A
25 mins
Test Coverage
F
0%

Function process has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    public function process()
    {
        $ids = (new \App\Db\Query())->select(['id'])->from(\App\Integrations\Wapro::TABLE_NAME)
            ->where(['status' => 1])
            ->column(\App\Db::getInstance('admin')) ?: [];
Severity: Minor
Found in modules/Vtiger/crons/IntegrationWapro.php - About 25 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

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

        $ids = (new \App\Db\Query())->select(['id'])->from(\App\Integrations\Wapro::TABLE_NAME)

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

Missing class import via use statement (line '26', column '17').
Open

            $wapro = new \App\Integrations\Wapro($id, $this);

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

            ->column(\App\Db::getInstance('admin')) ?: [];

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

Assigning 0 to property but \Vtiger_IntegrationWapro_Cron->logs is string
Open

        $this->logs = 0;

Call to undeclared method \App\Db::createCommand
Open

        $createCommand = \App\DB::getInstance('log')->createCommand();
Severity: Critical
Found in modules/Vtiger/crons/IntegrationWapro.php by phan

Call to undeclared method \App\Db\Query::select
Open

        $ids = (new \App\Db\Query())->select(['id'])->from(\App\Integrations\Wapro::TABLE_NAME)
Severity: Critical
Found in modules/Vtiger/crons/IntegrationWapro.php by phan

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

class Vtiger_IntegrationWapro_Cron extends \App\CronHandler

The class Vtiger_IntegrationWapro_Cron is not named in CamelCase.
Open

class Vtiger_IntegrationWapro_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

    /** {@inheritdoc} */

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

            ->where(['status' => 1])

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

    {

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

        $createCommand->delete(\App\Integrations\Wapro::LOG_TABLE_NAME, ['and', ['error' => 1], ['<', 'time', date('Y-m-d H:i:s', strtotime('-6 months'))]])->execute();

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

            ->column(\App\Db::getInstance('admin')) ?: [];

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

        $createCommand = \App\DB::getInstance('log')->createCommand();

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

            }

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

            foreach ($wapro->getSynchronizers() as $synchronizer) {

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

    }

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

        $ids = (new \App\Db\Query())->select(['id'])->from(\App\Integrations\Wapro::TABLE_NAME)

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

        foreach ($ids as $id) {

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

            $wapro = new \App\Integrations\Wapro($id, $this);

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

        }

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

                $this->logs += $synchronizer->process();

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

                    return;

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

                }

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

        $this->logs = 0;

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

        $createCommand->delete(\App\Integrations\Wapro::LOG_TABLE_NAME, ['and', ['error' => 0], ['<', 'time', date('Y-m-d H:i:s', strtotime('-7 day'))]])->execute();

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

            $this->updateLastActionTime();

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

                if ($this->checkTimeout()) {

Line exceeds 120 characters; contains 168 characters
Open

        $createCommand->delete(\App\Integrations\Wapro::LOG_TABLE_NAME, ['and', ['error' => 1], ['<', 'time', date('Y-m-d H:i:s', strtotime('-6 months'))]])->execute();

Line exceeds 120 characters; contains 165 characters
Open

        $createCommand->delete(\App\Integrations\Wapro::LOG_TABLE_NAME, ['and', ['error' => 0], ['<', 'time', date('Y-m-d H:i:s', strtotime('-7 day'))]])->execute();

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

                $this->updateLastActionTime();

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

class Vtiger_IntegrationWapro_Cron extends \App\CronHandler

There are no issues that match your filters.

Category
Status