YetiForceCompany/YetiForceCRM

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

Summary

Maintainability
A
35 mins
Test Coverage
A
94%

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

    public function process()
    {
        require_once 'include/Webservices/Utils.php';
        require_once 'include/Webservices/WebServiceError.php';
        require_once 'include/utils/VtlibUtils.php';
Severity: Minor
Found in modules/Vtiger/crons/Workflow.php - About 35 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 '27', column '28').
Open

        $workflowScheduler = new WorkFlowScheduler();
Severity: Minor
Found in modules/Vtiger/crons/Workflow.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

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

        $readyTasks = (new VTTaskQueue())->getReadyTasks();
Severity: Minor
Found in modules/Vtiger/crons/Workflow.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

Missing class import via use statement (line '30', column '13').
Open

        $tm = new VTTaskManager();
Severity: Minor
Found in modules/Vtiger/crons/Workflow.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 'Vtiger_Record_Model' in method 'process'.
Open

            $task->doTask(Vtiger_Record_Model::getInstanceById($entityId));
Severity: Minor
Found in modules/Vtiger/crons/Workflow.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

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

            if (empty($task) || !\App\Record::isExists($entityId)) {
Severity: Minor
Found in modules/Vtiger/crons/Workflow.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 Vtiger_Workflow_Cron extends \App\CronHandler

The class Vtiger_Workflow_Cron is not named in CamelCase.
Open

class Vtiger_Workflow_Cron extends \App\CronHandler
{
    /** {@inheritdoc} */
    public function process()
    {
Severity: Minor
Found in modules/Vtiger/crons/Workflow.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

Avoid variables with short names like $tm. Configured minimum length is 3.
Open

        $tm = new VTTaskManager();
Severity: Minor
Found in modules/Vtiger/crons/Workflow.php by phpmd

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

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

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

            [$taskId, $entityId, $taskContents] = $taskDetails;

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

        foreach ($readyTasks as $taskDetails) {

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

        $workflowScheduler->queueScheduledWorkflowTasks();

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

            if (empty($task) || !\App\Record::isExists($entityId)) {

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

        $tm = new VTTaskManager();

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

    }

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

        $workflowScheduler = new WorkFlowScheduler();

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

            $task->doTask(Vtiger_Record_Model::getInstanceById($entityId));

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

        require_once 'modules/com_vtiger_workflow/WorkFlowScheduler.php';

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

        $readyTasks = (new VTTaskQueue())->getReadyTasks();

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

            if ($this->checkTimeout()) {

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

        require_once 'include/Webservices/WebServiceError.php';

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

    {

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

            $task = $tm->retrieveTask($taskId);

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

            $task->setContents($taskContents);

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

        require_once 'modules/com_vtiger_workflow/include.php';

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

            //If task is not there then continue

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

        require_once 'include/Webservices/Utils.php';

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

        require_once 'modules/com_vtiger_workflow/VTWorkflowUtils.php';

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

                continue;

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

        require_once 'include/utils/VtlibUtils.php';

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

class Vtiger_Workflow_Cron extends \App\CronHandler

There are no issues that match your filters.

Category
Status