YetiForceCompany/YetiForceCRM

View on GitHub
modules/Vtiger/inventoryfields/TaxPercent.php

Summary

Maintainability
A
45 mins
Test Coverage
F
0%

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

    public function getValueForSave(array $item, bool $userFormat = false, string $column = null)
    {
        if ($column === $this->getColumnName() || null === $column) {
            $value = 0.0;
            if (!\App\Json::isEmpty($item['taxparam'] ?? '')) {
Severity: Minor
Found in modules/Vtiger/inventoryfields/TaxPercent.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

The method getDisplayValue has a boolean flag argument $rawText, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function getDisplayValue($value, array $rowData = [], bool $rawText = false)

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method getValueForSave has a boolean flag argument $userFormat, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function getValueForSave(array $item, bool $userFormat = false, string $column = null)

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

Avoid using static access to class '\App\Json' in method 'getValueForSave'.
Open

                $taxParam = \App\Json::decode($item['taxparam']);

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

The method getValueForSave uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

        } else {
            $value = $userFormat ? $this->getDBValue($item[$column]) : $item[$column];
        }

ElseExpression

Since: 1.4.0

An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

Example

class Foo
{
    public function bar($flag)
    {
        if ($flag) {
            // one branch
        } else {
            // another branch
        }
    }
}

Source https://phpmd.org/rules/cleancode.html#elseexpression

Avoid using static access to class 'App\Fields\Double' in method 'getDisplayValue'.
Open

        return App\Fields\Double::formatToDisplay($value);

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\Json' in method 'getValueForSave'.
Open

            if (!\App\Json::isEmpty($item['taxparam'] ?? '')) {

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

    public $shared = ['taxparam' => 'tax'];

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.

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

class Vtiger_TaxPercent_InventoryField extends Vtiger_Tax_InventoryField

The class Vtiger_TaxPercent_InventoryField is not named in CamelCase.
Open

class Vtiger_TaxPercent_InventoryField extends Vtiger_Tax_InventoryField
{
    protected $type = 'TaxPercent';
    protected $defaultLabel = 'LBL_TAX_IN_PERCENT';
    protected $defaultValue = 0;

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

    protected $type = 'TaxPercent';

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

        } else {

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

                }

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

    protected $defaultValue = 0;

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

    protected $purifyType = \App\Purifier::NUMBER;

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

    protected $summationValue = false;

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

            if (!\App\Json::isEmpty($item['taxparam'] ?? '')) {

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

        return App\Fields\Double::formatToDisplay($value);

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

    {

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

    protected $columnName = 'tax_percent';

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

    {

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

                    $value += $taxParam["{$type}Tax"];

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

    public $shared = ['taxparam' => 'tax'];

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

    }

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

    protected $dbType = 'decimal(12,8) DEFAULT 0';

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

        if ($column === $this->getColumnName() || null === $column) {

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

            }

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

    /**

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

        return $value;

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

            $value = 0.0;

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

            $value = $userFormat ? $this->getDBValue($item[$column]) : $item[$column];

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

    public function getDisplayValue($value, array $rowData = [], bool $rawText = false)

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

    protected $maximumLength = '9999';

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

    public function getValueForSave(array $item, bool $userFormat = false, string $column = null)

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

                $taxParam = \App\Json::decode($item['taxparam']);

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

                foreach ($types as $type) {

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

    }

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

    protected $defaultLabel = 'LBL_TAX_IN_PERCENT';

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

     * @var array List of shared fields

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

     */

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

                $types = (array) $taxParam['aggregationType'];

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

class Vtiger_TaxPercent_InventoryField extends Vtiger_Tax_InventoryField

There are no issues that match your filters.

Category
Status