YetiForceCompany/YetiForceCRM

View on GitHub
modules/Project/summary_blocks/Tasks.php

Summary

Maintainability
C
7 hrs
Test Coverage
F
0%

Missing class import via use statement (line '44', column '17').
Open

        $query = (new App\Db\Query())->from('vtiger_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 '\App\Language' in method 'process'.
Open

                'label' => \App\Language::translate('LBL_OPEN'),

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_Module_Model' in method 'process'.
Open

        $badgeLink = \Vtiger_Relation_Model::getInstance(\Vtiger_Module_Model::getInstance($recordModel->getModuleName()), \Vtiger_Module_Model::getInstance($this->reference))->getListUrl($recordModel);

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_Module_Model' in method 'process'.
Open

        $badgeLink = \Vtiger_Relation_Model::getInstance(\Vtiger_Module_Model::getInstance($recordModel->getModuleName()), \Vtiger_Module_Model::getInstance($this->reference))->getListUrl($recordModel);

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

                'label' => \App\Language::translate('LBL_ALL'),

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\Json' in method 'process'.
Open

                'badgeLink' => $badgeLink . '&search_params=' . urlencode(\App\Json::encode([[['projecttaskstatus', 'e', $this->status]]]))

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

Call to undeclared method \App\Db\Query::from
Open

        $query = (new App\Db\Query())->from('vtiger_projecttask')
Severity: Critical
Found in modules/Project/summary_blocks/Tasks.php by phan

Returning type array{0:array{label:string,value:mixed,class:'badge-success',badgeLink:string},1:array{label:string,value:mixed,class:'badge-secondary',badgeLink:string}} but process() is declared to return int
Open

                'label' => \App\Language::translate('LBL_OPEN'),

Similar blocks of code found in 2 locations. Consider refactoring.
Open

    public function process(Vtiger_Record_Model $recordModel)
    {
        $badgeLink = \Vtiger_Relation_Model::getInstance(\Vtiger_Module_Model::getInstance($recordModel->getModuleName()), \Vtiger_Module_Model::getInstance($this->reference))->getListUrl($recordModel);
        $query = (new App\Db\Query())->from('vtiger_projecttask')
            ->innerJoin('vtiger_crmentity', 'vtiger_projecttask.projecttaskid = vtiger_crmentity.crmid')
Severity: Major
Found in modules/Project/summary_blocks/Tasks.php and 1 other location - About 7 hrs to fix
modules/Project/summary_blocks/Milestones.php on lines 41..62

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 241.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

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

class Tasks

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

    public $type = 'badge';

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

                'label' => \App\Language::translate('LBL_OPEN'),

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

    /** @var int Block sequence */

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

    /** @var string Block icon */

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

    /** @var array Block type */

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

     */

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

                'class' => 'badge-success',

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

     *

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

        $badgeLink = \Vtiger_Relation_Model::getInstance(\Vtiger_Module_Model::getInstance($recordModel->getModuleName()), \Vtiger_Module_Model::getInstance($this->reference))->getListUrl($recordModel);

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

            ->innerJoin('vtiger_crmentity', 'vtiger_projecttask.projecttaskid = vtiger_crmentity.crmid')

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

            ->where(['vtiger_projecttask.projectid' => $recordModel->getId(), 'vtiger_crmentity.deleted' => 0]);

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

    public $status = ['PLL_IN_PROGRESSING', 'PLL_IN_APPROVAL', 'PLL_SUBMITTED_COMMENTS'];

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

     * @param Vtiger_Record_Model $recordModel

Line exceeds 120 characters; contains 202 characters
Open

        $badgeLink = \Vtiger_Relation_Model::getInstance(\Vtiger_Module_Model::getInstance($recordModel->getModuleName()), \Vtiger_Module_Model::getInstance($this->reference))->getListUrl($recordModel);

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

    public $reference = 'ProjectTask';

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

     * @return int

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

        $open = $query->andWhere(['vtiger_projecttask.projecttaskstatus' => $this->status])->count();

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

                'value' => $open,

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

    /** @var string Block name */

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

    public $sequence = 2;

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

     * Process.

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

                'badgeLink' => $badgeLink . '&search_params=' . urlencode(\App\Json::encode([[['projecttaskstatus', 'e', $this->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

    public $icon = 'yfm-ProjectTask';

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

        $total = $query->count();

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

    public $name = 'LBL_TASKS_LIST';

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

    /** @var string Block reference */

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

                'badgeLink' => $badgeLink

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

    /** @var string Block type */

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 process(Vtiger_Record_Model $recordModel)

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

                'value' => $total,

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

            [

Line exceeds 120 characters; contains 139 characters
Open

                'badgeLink' => $badgeLink . '&search_params=' . urlencode(\App\Json::encode([[['projecttaskstatus', 'e', $this->status]]]))

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

                'class' => 'badge-secondary',

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

                'label' => \App\Language::translate('LBL_ALL'),

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

    {

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

        $query = (new App\Db\Query())->from('vtiger_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

        ];

There are no issues that match your filters.

Category
Status