YetiForceCompany/YetiForceCRM

View on GitHub
modules/PriceBooks/models/Relation.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Avoid using static access to class 'PriceBooks_Record_Model' in method 'addListPrice'.
Open

        $priceBookModel = PriceBooks_Record_Model::getInstanceById($sourceRecordId, $this->getParentModuleModel()->get('name'));

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

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

class PriceBooks_Relation_Model extends Vtiger_Relation_Model

The class PriceBooks_Relation_Model is not named in CamelCase.
Open

class PriceBooks_Relation_Model extends Vtiger_Relation_Model
{
    /**
     * Function to add PriceBook-Products/Services Relation.
     *

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

     * @param int    $sourceRecordId

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

        $priceBookModel = PriceBooks_Record_Model::getInstanceById($sourceRecordId, $this->getParentModuleModel()->get('name'));

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

    {

Line exceeds 120 characters; contains 128 characters
Open

        $priceBookModel = PriceBooks_Record_Model::getInstanceById($sourceRecordId, $this->getParentModuleModel()->get('name'));

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

    public function addListPrice(int $sourceRecordId, int $destinationRecordId, $value, string $name = 'listprice')

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 mixed  $value

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

        return $priceBookModel->updateListPrice($destinationRecordId, $value, $name);

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

     * Function to add PriceBook-Products/Services Relation.

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

     * @param 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

    }

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 int    $destinationRecordId

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

class PriceBooks_Relation_Model extends Vtiger_Relation_Model

There are no issues that match your filters.

Category
Status