YetiForceCompany/YetiForceCRM

View on GitHub
modules/ProjectMilestone/models/Record.php

Summary

Maintainability
A
0 mins
Test Coverage
F
35%

Missing class import via use statement (line '29', column '26').
Open

            $queryGenerator = new \App\QueryGenerator('ProjectTask');

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 'Vtiger_Record_Model' in method 'updateTasks'.
Open

                $recordModel = Vtiger_Record_Model::getInstanceById($row['id'], 'ProjectTask');

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

        if ($this->getPreviousValue('projectid')) {

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.

Call to method __construct from undeclared class \App\QueryGenerator (Did you mean class \Tests\App\QueryGenerator)
Open

            $queryGenerator = new \App\QueryGenerator('ProjectTask');
Severity: Critical
Found in modules/ProjectMilestone/models/Record.php by phan

Call to method createQuery from undeclared class \App\QueryGenerator (Did you mean class \Tests\App\QueryGenerator)
Open

            $dataReader = $queryGenerator->createQuery()->createCommand()->query();
Severity: Critical
Found in modules/ProjectMilestone/models/Record.php by phan

Call to method addNativeCondition from undeclared class \App\QueryGenerator (Did you mean class \Tests\App\QueryGenerator)
Open

            $queryGenerator->addNativeCondition(['projectid' => $this->getPreviousValue('projectid')]);
Severity: Critical
Found in modules/ProjectMilestone/models/Record.php by phan

Reference to instance property permissions from undeclared class \App\QueryGenerator
Open

            $queryGenerator->permissions = false;

Call to method setFields from undeclared class \App\QueryGenerator (Did you mean class \Tests\App\QueryGenerator)
Open

            $queryGenerator->setFields(['id']);
Severity: Critical
Found in modules/ProjectMilestone/models/Record.php by phan

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

class ProjectMilestone_Record_Model extends Vtiger_Record_Model

The class ProjectMilestone_Record_Model is not named in CamelCase.
Open

class ProjectMilestone_Record_Model extends Vtiger_Record_Model
{
    /**
     * Function to save record.
     */

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

     * Updates tasks when project has been changed.

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

        if ($this->getPreviousValue('projectid')) {

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

                $recordModel->save();

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

    /**

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

            $queryGenerator->setFields(['id']);

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 saveToDb()

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

    private function updateTasks()

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

    {

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

            while ($row = $dataReader->read()) {

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

    }

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

                $recordModel = Vtiger_Record_Model::getInstanceById($row['id'], 'ProjectTask');

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

        parent::saveToDb();

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

                $recordModel->set('projectid', $this->get('projectid'));

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

            $queryGenerator->addNativeCondition(['projectid' => $this->getPreviousValue('projectid')]);

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 void

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

     */

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

            $queryGenerator = new \App\QueryGenerator('ProjectTask');

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

            $dataReader = $queryGenerator->createQuery()->createCommand()->query();

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

     * Function to save record.

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

        $this->updateTasks();

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

            $queryGenerator->permissions = false;

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

            }

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

class ProjectMilestone_Record_Model extends Vtiger_Record_Model

There are no issues that match your filters.

Category
Status