YetiForceCompany/YetiForceCRM

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

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

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

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

        return (bool) $value ? App\Language::translate('LBL_YES') : App\Language::translate('LBL_NO');

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 'getDisplayValue'.
Open

        return (bool) $value ? App\Language::translate('LBL_YES') : App\Language::translate('LBL_NO');

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 constant TYPE_BOOLEAN 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_BOOLEAN;
Severity: Critical
Found in modules/Vtiger/inventoryfields/Boolean.php by phan

Returning type bool but getEditValue() is declared to return string
Open

        return (bool) $value;

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

class Vtiger_Boolean_InventoryField extends Vtiger_Basic_InventoryField

The class Vtiger_Boolean_InventoryField is not named in CamelCase.
Open

class Vtiger_Boolean_InventoryField extends Vtiger_Basic_InventoryField
{
    protected $type = 'Boolean';
    protected $defaultLabel = 'LBL_BOOLEAN';
    protected $columnName = 'bool';

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

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

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 $type = 'Boolean';

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 (bool) $value;

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

    protected $defaultLabel = 'LBL_BOOLEAN';

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

        if (!\in_array($value, [0, 1, '1', '0', 'on'])) {

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

    protected $columnName = 'bool';

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

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

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

    public function getEditValue($value)

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

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

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

        return (bool) $value ? App\Language::translate('LBL_YES') : App\Language::translate('LBL_NO');

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

    protected $dbType = \yii\db\Schema::TYPE_BOOLEAN;

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

    }

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

class Vtiger_Boolean_InventoryField extends Vtiger_Basic_InventoryField

There are no issues that match your filters.

Category
Status