YetiForceCompany/YetiForceCRM

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

Summary

Maintainability
A
25 mins
Test Coverage
F
0%

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

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

Missing class import via use statement (line '40', column '15').
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

Avoid using static access to class '\App\Purifier' in method 'getEditValue'.
Open

        return \App\Purifier::encodeHtml(DateTimeField::convertToUserFormat($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\Date' in method 'getDisplayValue'.
Open

        $dateValue = App\Fields\Date::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\Date' in method 'getDBValue'.
Open

            $this->dbValue[$value] = empty($value) ? '' : \App\Fields\Date::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

Avoid using static access to class 'DateTimeField' in method 'getEditValue'.
Open

        return \App\Purifier::encodeHtml(DateTimeField::convertToUserFormat($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_Date_InventoryField->dbValue (Did you mean expr->value or $value)
Open

            $this->dbValue[$value] = empty($value) ? '' : \App\Fields\Date::formatToDb($value);

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

        return $this->dbValue[$value];

Argument 3 (year) is string but \checkdate() takes int
Open

            if (!is_numeric($m) || !is_numeric($d) || !is_numeric($y) || !checkdate($m, $d, $y)) {

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

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

Argument 1 (month) is string but \checkdate() takes int
Open

            if (!is_numeric($m) || !is_numeric($d) || !is_numeric($y) || !checkdate($m, $d, $y)) {

Argument 2 (day) is string but \checkdate() takes int
Open

            if (!is_numeric($m) || !is_numeric($d) || !is_numeric($y) || !checkdate($m, $d, $y)) {

Reference to constant TYPE_DATE from undeclared class \yii\db\Schema (Did you mean class \App\Db\Drivers\Mysql\Schema or class \App\Db\Drivers\Pgsql\Schema)
Open

    protected $dbType = \yii\db\Schema::TYPE_DATE;
Severity: Critical
Found in modules/Vtiger/inventoryfields/Date.php by phan

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

class Vtiger_Date_InventoryField extends Vtiger_Basic_InventoryField

The class Vtiger_Date_InventoryField is not named in CamelCase.
Open

class Vtiger_Date_InventoryField extends Vtiger_Basic_InventoryField
{
    protected $type = 'Date';
    protected $defaultLabel = 'LBL_DATE';
    protected $columnName = 'date';

CamelCaseClassName

Since: 0.2

It is considered best practice to use the CamelCase notation to name classes.

Example

class class_name {
}

Source

Avoid variables with short names like $d. Configured minimum length is 3.
Open

            [$y, $m, $d] = explode('-', $value);

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

Source https://phpmd.org/rules/naming.html#shortvariable

Avoid variables with short names like $y. Configured minimum length is 3.
Open

            [$y, $m, $d] = explode('-', $value);

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

Source https://phpmd.org/rules/naming.html#shortvariable

Avoid variables with short names like $m. Configured minimum length is 3.
Open

            [$y, $m, $d] = explode('-', $value);

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

Source https://phpmd.org/rules/naming.html#shortvariable

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

        if ($value) {

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

            [$y, $m, $d] = explode('-', $value);

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

    protected $dbType = \yii\db\Schema::TYPE_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

            return '';

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])) {

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

    /** {@inheritdoc} */

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

    protected $columnName = 'date';

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

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 $onlyOne = false;

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

        if ('--' === $dateValue) {

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

    }

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

    protected $defaultLabel = 'LBL_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

        return $this->dbValue[$value];

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

            return '';

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

            if (!is_numeric($m) || !is_numeric($d) || !is_numeric($y) || !checkdate($m, $d, $y)) {

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

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 $purifyType = \App\Purifier::DATE_USER_FORMAT;

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 $dateValue;

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

        if (empty($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

        $dateValue = App\Fields\Date::formatToDisplay($value);

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

    protected $type = 'Date';

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

            $this->dbValue[$value] = empty($value) ? '' : \App\Fields\Date::formatToDb($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

        return \App\Purifier::encodeHtml(DateTimeField::convertToUserFormat($value));

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

        if (empty($value)) {

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

    }

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

class Vtiger_Date_InventoryField extends Vtiger_Basic_InventoryField

There are no issues that match your filters.

Category
Status