YetiForceCompany/YetiForceCRM

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

Summary

Maintainability
A
1 hr
Test Coverage
F
0%

Method process has 28 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function process()
    {
        $html = '';
        foreach (\App\SystemWarnings::getWarnings('all') as $warning) {
            if ('YetiForce' === $warning->getFolder()) {
Severity: Minor
Found in modules/Vtiger/crons/SystemWarnings.php - About 1 hr to fix

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

        public function process()
        {
            $html = '';
            foreach (\App\SystemWarnings::getWarnings('all') as $warning) {
                if ('YetiForce' === $warning->getFolder()) {
    Severity: Minor
    Found in modules/Vtiger/crons/SystemWarnings.php - About 45 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 '40', column '17').
    Open

            $mails = (new \App\Db\Query())->select(['email1'])->from('vtiger_users')->where(['is_admin' => 'on', 'status' => 'Active'])->column();

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

            foreach (\App\SystemWarnings::getWarnings('all') as $warning) {

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

                \App\Mailer::sendFromTemplate([
                    'to' => $mails,
                    'template' => 'SystemWarnings',
                    'warnings' => $html,
                ]);

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

            $html .= '<hr>' . App\Config::main('site_URL') . '<br>';

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

            $company = \current(\App\MultiCompany::getAll() ?? [[]]);

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

                $html .= '<h2>' . App\Language::translate($warning->getTitle(), 'Settings:SystemWarnings') . '</h2>';

    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 "email1" 3 times.
    Open

            if (!empty($company['email1'])) {

    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

            $mails = (new \App\Db\Query())->select(['email1'])->from('vtiger_users')->where(['is_admin' => 'on', 'status' => 'Active'])->column();
    Severity: Critical
    Found in modules/Vtiger/crons/SystemWarnings.php by phan

    Argument 1 (folders) is 'all' but \App\SystemWarnings::getWarnings() takes array defined at /code/app/SystemWarnings.php:60
    Open

            foreach (\App\SystemWarnings::getWarnings('all') as $warning) {

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

    class Vtiger_SystemWarnings_Cron extends \App\CronHandler

    The class Vtiger_SystemWarnings_Cron is not named in CamelCase.
    Open

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

                $html .= '<h2>' . App\Language::translate($warning->getTitle(), 'Settings:SystemWarnings') . '</h2>';

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

            $mails = (new \App\Db\Query())->select(['email1'])->from('vtiger_users')->where(['is_admin' => 'on', 'status' => 'Active'])->column();

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

        {

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

            $html = '';

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

            $company = \current(\App\MultiCompany::getAll() ?? [[]]);

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

            }

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

                    'template' => 'SystemWarnings',

    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

                $html .= '<hr>';

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

                    'warnings' => $html,

    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($html)) {

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

            if ($mails) {

    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 (\App\SystemWarnings::getWarnings('all') as $warning) {

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

            if (!empty($company['email1'])) {

    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

            if (!empty($company['company_name'])) {

    Line exceeds 120 characters; contains 142 characters
    Open

            $mails = (new \App\Db\Query())->select(['email1'])->from('vtiger_users')->where(['is_admin' => 'on', 'status' => 'Active'])->column();

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

                    'to' => $mails,

    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

        /** {@inheritdoc} */

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

                $html .= ' - ' . $company['company_name'];

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

                \App\Mailer::sendFromTemplate([

    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

                $html .= ' - ' . $company['email1'];

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

                if ('YetiForce' === $warning->getFolder()) {

    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

            }

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

            $html .= '<hr>' . App\Config::main('site_URL') . '<br>';

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

                $html .= '<p>' . $warning->getDescription() . '</p>';

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

    class Vtiger_SystemWarnings_Cron extends \App\CronHandler

    There are no issues that match your filters.

    Category
    Status