YetiForceCompany/YetiForceCRM

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

Summary

Maintainability
A
2 hrs
Test Coverage
C
74%

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

    public function validate($value, string $columnName, bool $isUserFormat, $originalValue = null)
    {
        if ($columnName === $this->getColumnName()) {
            if ($isUserFormat) {
                $value = $this->getDBValue($value, $columnName);
Severity: Minor
Found in modules/Vtiger/inventoryfields/Discount.php - About 1 hr 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

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['discountparam'] ?? '')) {
Severity: Minor
Found in modules/Vtiger/inventoryfields/Discount.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 '65', column '15').
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

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 '68', column '15').
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

Missing class import via use statement (line '142', column '15').
Open

                throw new \App\Exceptions\Security("ERR_ILLEGAL_FIELD_VALUE||discountType||{$discountType}", 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

Missing class import via use statement (line '71', 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

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

            $this->dbValue["{$value}"] = $name === $this->getColumnName() ? App\Fields\Double::formatToDb($value) : $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 '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\Json' in method 'getValueForSave'.
Open

                    $discountParam = \App\Json::decode($item['discountparam']) ?? [];

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['discountparam'] ?? '')) {

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

                $aggregation = $item['discount_aggreg'] ?? \Vtiger_Inventory_Model::getDiscountsConfig('aggregation');

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

        } elseif (App\TextUtils::getTextLength($value) > $this->customMaximumLength[$columnName]) {

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 "discountparam" 5 times.
Open

        'discountparam' => 'string',

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.

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

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

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

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

Doc-block of $mode in getDiscountValue contains phpdoc param type string which is incompatible with the param type int declared in the signature
Open

     * @param string $mode          0-can not be combined, 1-summary, 2-cascade

Reference to undeclared property \Vtiger_Discount_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)) {

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

class Vtiger_Discount_InventoryField extends Vtiger_Basic_InventoryField

The class Vtiger_Discount_InventoryField is not named in CamelCase.
Open

class Vtiger_Discount_InventoryField extends Vtiger_Basic_InventoryField
{
    protected $type = 'Discount';
    protected $defaultLabel = 'LBL_DISCOUNT';
    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 = 'Discount';

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

        'discountparam' => App\Purifier::TEXT,

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

    protected $defaultLabel = 'LBL_DISCOUNT';

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 $customPurifyType = [

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

        'discountparam' => 'string',

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 $customMaximumLength = [

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

        'discountparam' => 255,

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

    /** {@inheritdoc} */

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

    /** {@inheritdoc} */

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

        if ($columnName === $this->getColumnName()) {

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

                if (\is_numeric($aggregation)) {

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

    private function getDiscountValueByType(string $aggregationType, array $discountParam, float $totalPrice): float

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

    protected $columnName = 'discount';

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

                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

    protected $customColumn = [

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

     * @param string $aggregationType

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

        switch ($discountType) {

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

    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

        return $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

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

Line exceeds 120 characters; contains 129 characters
Open

                    $totalPrice = static::getInstance($this->getModuleName(), 'TotalPrice')->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

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

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

     * Calculate the discount value.

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

     * @param string $mode          0-can not be combined, 1-summary, 2-cascade

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

            $value += $discountValue;

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

                break;

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 $dbType = 'decimal(28,8) DEFAULT 0';

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

            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

            $value = 0.0;

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

     * @param float  $totalPrice

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 = $totalPrice * $discount / 100.00;

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

        }

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

        $discount = $discountParam["{$aggregationType}Discount"];

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

            case 'percentage':

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

     * @param array  $discountParam

Line exceeds 120 characters; contains 123 characters
Open

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

        } elseif (App\TextUtils::getTextLength($value) > $this->customMaximumLength[$columnName]) {

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

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

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

                    $discountParam = \App\Json::decode($item['discountparam']) ?? [];

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

        $types = $discountParam['aggregationType'] ?? [];

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

        if (!\is_array($types)) {

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

     */

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

        $discountType = $discountParam["{$aggregationType}DiscountType"] ?? 'percentage';

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

            default:

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

        }

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

    /**

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

     * @param array  $discountParam

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

                $aggregation = $item['discount_aggreg'] ?? \Vtiger_Inventory_Model::getDiscountsConfig('aggregation');

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

    private function getDiscountValue(array $discountParam, float $totalPrice, int $mode): float

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

            $types = [$types];

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

            if (2 === $mode) {

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

            }

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

     * @param float  $totalPrice

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

                    $totalPrice = static::getInstance($this->getModuleName(), 'TotalPrice')->getValueForSave($item, $userFormat);

Line exceeds 120 characters; contains 182 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

                break;

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

            if ($this->maximumLength < $value || -$this->maximumLength > $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

        } 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

        $value = $discountValue = 0.0;

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

     *

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

            case 'amount':

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

        }

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

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

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 ($column === $this->getColumnName() || null === $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

     * @return float

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

                $value = $discount;

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

                throw new \App\Exceptions\Security("ERR_ILLEGAL_FIELD_VALUE||discountType||{$discountType}", 406);

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

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

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

                    $value = $this->getDiscountValue($discountParam, $totalPrice, (int) $aggregation);

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

     * Gets the discount by type.

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

            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

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

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

     * @return float

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

            $discountValue = $this->getDiscountValueByType($type, $discountParam, $totalPrice);

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

                $totalPrice -= $discountValue;

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

class Vtiger_Discount_InventoryField extends Vtiger_Basic_InventoryField

There are no issues that match your filters.

Category
Status