YetiForceCompany/YetiForceCRM

View on GitHub
modules/ProjectTask/models/Module.php

Summary

Maintainability
A
1 hr
Test Coverage
F
0%

Method getRecordsByStatus has 32 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public static function getRecordsByStatus(array $params, Vtiger_Paging_Model $pagingModel, $user): array
    {
        if (!$user) {
            $user = \App\User::getCurrentUserId();
        }
Severity: Minor
Found in modules/ProjectTask/models/Module.php - About 1 hr to fix

    Function getRecordsByStatus has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        public static function getRecordsByStatus(array $params, Vtiger_Paging_Model $pagingModel, $user): array
        {
            if (!$user) {
                $user = \App\User::getCurrentUserId();
            }
    Severity: Minor
    Found in modules/ProjectTask/models/Module.php - About 35 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 '29', column '25').
    Open

            $queryGenerator = new App\QueryGenerator('ProjectTask');
    Severity: Minor
    Found in modules/ProjectTask/models/Module.php by phpmd

    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\User' in method 'getRecordsByStatus'.
    Open

                $user = \App\User::getCurrentUserId();
    Severity: Minor
    Found in modules/ProjectTask/models/Module.php by phpmd

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

                $model = Vtiger_Record_Model::getCleanInstance('ProjectTask');
    Severity: Minor
    Found in modules/ProjectTask/models/Module.php by phpmd

    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 getRecordsByStatus uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
    Open

            } else {
                $pagingModel->set('nextPageExists', false);
            }
    Severity: Minor
    Found in modules/ProjectTask/models/Module.php by phpmd

    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

    Define a constant instead of duplicating this literal "projecttaskpriority" 3 times.
    Open

            if (isset($params['projecttaskpriority'])) {
    Severity: Critical
    Found in modules/ProjectTask/models/Module.php by sonar-php

    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/ProjectTask/models/Module.php by phan

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

                $queryGenerator->addNativeCondition(['projecttaskpriority' => $params['projecttaskpriority']]);
    Severity: Critical
    Found in modules/ProjectTask/models/Module.php by phan

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

                $queryGenerator->addCondition('assigned_user_id', $user, 'e', false);
    Severity: Critical
    Found in modules/ProjectTask/models/Module.php by phan

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

            $queryGenerator->addNativeCondition(['projecttaskstatus' => $params['projecttaskstatus']]);
    Severity: Critical
    Found in modules/ProjectTask/models/Module.php by phan

    Call to method getCurrentUserId from undeclared class \App\User (Did you mean class \Tests\App\User)
    Open

                $user = \App\User::getCurrentUserId();
    Severity: Critical
    Found in modules/ProjectTask/models/Module.php by phan

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

            $queryGenerator->setFields(['id', 'projecttaskname', 'projecttaskprogress', 'projectid', 'projectmilestoneid', 'targetenddate', 'enddate']);
    Severity: Critical
    Found in modules/ProjectTask/models/Module.php by phan

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

                $queryGenerator->addCondition('shownerid', $user, 'e', false);
    Severity: Critical
    Found in modules/ProjectTask/models/Module.php by phan

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

            $queryGenerator->setOffset($pagingModel->getStartIndex());
    Severity: Critical
    Found in modules/ProjectTask/models/Module.php by phan

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

            $queryGenerator->setLimit($pagingModel->getPageLimit() + 1);
    Severity: Critical
    Found in modules/ProjectTask/models/Module.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/ProjectTask/models/Module.php by phan

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

    class ProjectTask_Module_Model extends Vtiger_Module_Model

    The class ProjectTask_Module_Model is not named in CamelCase.
    Open

    class ProjectTask_Module_Model extends Vtiger_Module_Model
    {
        /**
         * Get project tasks by status.
         *
    Severity: Minor
    Found in modules/ProjectTask/models/Module.php by phpmd

    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

         * Get project tasks by status.

    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

            $queryGenerator->addNativeCondition(['projecttaskstatus' => $params['projecttaskstatus']]);

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

                $queryGenerator->addCondition('assigned_user_id', $user, 'e', false);

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

                $pagingModel->set('nextPageExists', false);

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

         * @param Vtiger_Paging_Model $pagingModel

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

                $user = \App\User::getCurrentUserId();

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

            $queryGenerator->setLimit($pagingModel->getPageLimit() + 1);

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

            $queryGenerator->setOffset($pagingModel->getStartIndex());

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

                $model->setData($row);

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

                array_pop($projectTasks);

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

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

            if (isset($params['projecttaskpriority'])) {

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

            $pagingModel->calculatePageRange($dataReader->count());

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

                $pagingModel->set('nextPageExists', true);

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

                $queryGenerator->addCondition('shownerid', $user, 'e', false);

    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

            } 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

         * @return array

    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

            $projectTasks = [];

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

            return $projectTasks;

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

         * @param array               $params

    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

            $dataReader->close();

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

            }

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

                $model->setId($row['id']);

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

                $queryGenerator->addNativeCondition(['projecttaskpriority' => $params['projecttaskpriority']]);

    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 ('all' !== $user && !empty($user)) {

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

        public static function getRecordsByStatus(array $params, Vtiger_Paging_Model $pagingModel, $user): array

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

            if (!$user) {

    Line exceeds 120 characters; contains 148 characters
    Open

            $queryGenerator->setFields(['id', 'projecttaskname', 'projecttaskprogress', 'projectid', 'projectmilestoneid', 'targetenddate', 'enddate']);

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

                $projectTasks[] = $model;

    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

                $model = Vtiger_Record_Model::getCleanInstance('ProjectTask');

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

            if ($dataReader->count() > $pagingModel->getPageLimit()) {

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

            $queryGenerator->setFields(['id', 'projecttaskname', 'projecttaskprogress', 'projectid', 'projectmilestoneid', 'targetenddate', 'enddate']);

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

    class ProjectTask_Module_Model extends Vtiger_Module_Model

    There are no issues that match your filters.

    Category
    Status