YetiForceCompany/YetiForceCRM

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

Summary

Maintainability
C
7 hrs
Test Coverage
D
68%

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

    public function validate($value, string $columnName, bool $isUserFormat, $originalValue = null)
    {
        if ($isUserFormat) {
            $value = $this->getDBValue($value, $columnName);
            if (null !== $originalValue) {
Severity: Minor
Found in modules/Vtiger/inventoryfields/GrossPrice.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 '55', column '14').
Open

            throw new \App\Exceptions\Security("ERR_ILLEGAL_FIELD_VALUE||$columnName||$value", 406);

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

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

Missing class import via use statement (line '61', column '14').
Open

            throw new \App\Exceptions\Security('ERR_ILLEGAL_FIELD_VALUE||' . ($columnName ?? $this->getColumnName()) . "||{$this->getModuleName()}||$value($originalValue)", 406);

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

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

Missing class import via use statement (line '58', column '14').
Open

            throw new \App\Exceptions\Security("ERR_VALUE_IS_TOO_LONG||$columnName||$value", 406);

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\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\Fields\Double' in method 'getEditValue'.
Open

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

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\Validator' in method 'validate'.
Open

        if (null !== $originalValue && !\App\Validator::floatIsEqualUserCurrencyDecimals($value, $originalValue)) {

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\Fields\Double' in method 'getDBValue'.
Open

            $this->dbValue["{$value}"] = App\Fields\Double::formatToDb($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

Reference to undeclared property \Vtiger_GrossPrice_InventoryField->dbValue (Did you mean expr->value or $value)
Open

            $this->dbValue["{$value}"] = App\Fields\Double::formatToDb($value);

Reference to undeclared property \Vtiger_GrossPrice_InventoryField->dbValue (Did you mean expr->value or $value)
Open

        if (!isset($this->dbValue["{$value}"])) {

Call to method floatIsEqualUserCurrencyDecimals from undeclared class \App\Validator (Did you mean class \Tests\App\Validator)
Open

        if (null !== $originalValue && !\App\Validator::floatIsEqualUserCurrencyDecimals($value, $originalValue)) {

Reference to undeclared property \Vtiger_GrossPrice_InventoryField->dbValue (Did you mean expr->value or $value)
Open

        return $this->dbValue["{$value}"];

Identical blocks of code found in 4 locations. Consider refactoring.
Open

    public function validate($value, string $columnName, bool $isUserFormat, $originalValue = null)
    {
        if ($isUserFormat) {
            $value = $this->getDBValue($value, $columnName);
            if (null !== $originalValue) {
Severity: Major
Found in modules/Vtiger/inventoryfields/GrossPrice.php and 3 other locations - About 6 hrs to fix
modules/Vtiger/inventoryfields/Margin.php on lines 46..63
modules/Vtiger/inventoryfields/NetPrice.php on lines 46..63
modules/Vtiger/inventoryfields/TotalPrice.php on lines 46..63

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 214.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

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

class Vtiger_GrossPrice_InventoryField extends Vtiger_Basic_InventoryField

The class Vtiger_GrossPrice_InventoryField is not named in CamelCase.
Open

class Vtiger_GrossPrice_InventoryField extends Vtiger_Basic_InventoryField
{
    protected $type = 'GrossPrice';
    protected $defaultLabel = 'LBL_GROSS_PRICE';
    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 $purifyType = \App\Purifier::NUMBER;

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

        }

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

            throw new \App\Exceptions\Security('ERR_ILLEGAL_FIELD_VALUE||' . ($columnName ?? $this->getColumnName()) . "||{$this->getModuleName()}||$value($originalValue)", 406);

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 $maximumLength = '99999999999999999999';

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 \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

        return $this->dbValue["{$value}"];

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

        if ($this->maximumLength < $value || -$this->maximumLength > $value) {

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 $summationValue = true;

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

            $value = $this->getDBValue($value, $columnName);

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

        return static::getInstance($this->getModuleName(), 'NetPrice')->getValueForSave($item, $userFormat)

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

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

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

        if (!isset($this->dbValue["{$value}"])) {

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

    public function getDBValue($value, ?string $name = '')

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

                $originalValue = $this->getDBValue($originalValue, $columnName);

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

            }

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

            $this->dbValue["{$value}"] = App\Fields\Double::formatToDb($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

            throw new \App\Exceptions\Security("ERR_VALUE_IS_TOO_LONG||$columnName||$value", 406);

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

            + static::getInstance($this->getModuleName(), 'Tax')->getValueForSave($item, $userFormat);

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_GROSS_PRICE';

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

    protected $type = 'GrossPrice';

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

    protected $columnName = 'gross';

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

    public function validate($value, string $columnName, bool $isUserFormat, $originalValue = null)

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

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

            if (null !== $originalValue) {

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

        if (!is_numeric($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

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

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

    }

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

            throw new \App\Exceptions\Security("ERR_ILLEGAL_FIELD_VALUE||$columnName||$value", 406);

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

        }

Line exceeds 120 characters; contains 178 characters
Open

            throw new \App\Exceptions\Security('ERR_ILLEGAL_FIELD_VALUE||' . ($columnName ?? $this->getColumnName()) . "||{$this->getModuleName()}||$value($originalValue)", 406);

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

    }

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

    public function getEditValue($value)

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

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

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

        if (null !== $originalValue && !\App\Validator::floatIsEqualUserCurrencyDecimals($value, $originalValue)) {

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

    /** {@inheritdoc} */

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

class Vtiger_GrossPrice_InventoryField extends Vtiger_Basic_InventoryField

There are no issues that match your filters.

Category
Status