YetiForceCompany/YetiForceCRM

View on GitHub
modules/OSSMailScanner/models/EmailScannerAction.php

Summary

Maintainability
A
35 mins
Test Coverage
F
0%

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

    public function process(OSSMail_Mail_Model $mail, $moduleName)
    {
        $mailId = $mail->getMailCrmId();
        if (!$mailId) {
            return 0;
Severity: Minor
Found in modules/OSSMailScanner/models/EmailScannerAction.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 '31', column '25').
Open

            $relationModel = new OSSMailView_Relation_Model();

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

        $crmIds = OSSMailScanner_Record_Model::mergeArray($crmIds, $crmidsReplyToaddress);

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

        $crmIds = OSSMailScanner_Record_Model::mergeArray($crmIds, $crmidsToaddress);

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

        $crmIds = OSSMailScanner_Record_Model::mergeArray($crmIds, $crmidsCcaddress);

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

        $crmIds = OSSMailScanner_Record_Model::mergeArray($crmIds, $crmidsBccaddress);

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

Call to method mergeArray from undeclared class \OSSMailScanner_Record_Model
Open

        $crmIds = OSSMailScanner_Record_Model::mergeArray($crmIds, $crmidsReplyToaddress);

Call to method mergeArray from undeclared class \OSSMailScanner_Record_Model
Open

        $crmIds = OSSMailScanner_Record_Model::mergeArray($crmIds, $crmidsBccaddress);

Call to method mergeArray from undeclared class \OSSMailScanner_Record_Model
Open

        $crmIds = OSSMailScanner_Record_Model::mergeArray($crmIds, $crmidsToaddress);

Call to method mergeArray from undeclared class \OSSMailScanner_Record_Model
Open

        $crmIds = OSSMailScanner_Record_Model::mergeArray($crmIds, $crmidsCcaddress);

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

class OSSMailScanner_EmailScannerAction_Model

The class OSSMailScanner_EmailScannerAction_Model is not named in CamelCase.
Open

class OSSMailScanner_EmailScannerAction_Model
{
    public function process(OSSMail_Mail_Model $mail, $moduleName)
    {
        $mailId = $mail->getMailCrmId();

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

        $mailId = $mail->getMailCrmId();

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

        $crmidsToaddress = $mail->findEmailAddress('to_email', $moduleName, true);

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

        $crmIds = OSSMailScanner_Record_Model::mergeArray($crmIds, $crmidsCcaddress);

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

        $crmIds = OSSMailScanner_Record_Model::mergeArray($crmIds, $crmidsBccaddress);

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

            $relationModel = new OSSMailView_Relation_Model();

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

        $crmIds = OSSMailScanner_Record_Model::mergeArray($crmIds, $crmidsToaddress);

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

                if ($status) {

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

        }

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

        if (!empty($crmIds)) {

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

            foreach ($crmIds as $crmId) {

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

                $status = $relationModel->addRelation($mailId, $crmId, $mail->get('date'));

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

    {

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

        $crmIds = $mail->findEmailAddress('from_email', $moduleName, true);

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

                    $returnIds[] = $crmId;

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

        $crmidsCcaddress = $mail->findEmailAddress('cc_email', $moduleName, true);

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

    public function process(OSSMail_Mail_Model $mail, $moduleName)

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

        $crmidsBccaddress = $mail->findEmailAddress('bcc_email', $moduleName, true);

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

        return $returnIds;

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

        $returnIds = [];

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

        if (!$mailId) {

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

            return 0;

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

        $crmIds = OSSMailScanner_Record_Model::mergeArray($crmIds, $crmidsReplyToaddress);

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

        $crmidsReplyToaddress = $mail->findEmailAddress('reply_toaddress', $moduleName, true);

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

                }

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

class OSSMailScanner_EmailScannerAction_Model

There are no issues that match your filters.

Category
Status