YetiForceCompany/YetiForceCRM

View on GitHub
modules/Occurrences/views/Calendar.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

The method postProcess has a boolean flag argument $display, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function postProcess(App\Request $request, $display = true)

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

Call to undeclared method \Vtiger_Viewer::assign
Open

        $viewer->assign('SHOW_TYPE', true);
Severity: Critical
Found in modules/Occurrences/views/Calendar.php by phan

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

class Occurrences_Calendar_View extends Vtiger_Calendar_View

The class Occurrences_Calendar_View is not named in CamelCase.
Open

class Occurrences_Calendar_View extends Vtiger_Calendar_View
{
    /** {@inheritdoc} */
    public function postProcess(App\Request $request, $display = true)
    {

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

        parent::postProcess($request);

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

        $viewer->assign('SHOW_TYPE', true);

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

    public function postProcess(App\Request $request, $display = true)

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

        $viewer = $this->getViewer($request);

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

class Occurrences_Calendar_View extends Vtiger_Calendar_View

There are no issues that match your filters.

Category
Status