YetiForceCompany/YetiForceCRM

View on GitHub
modules/Calendar/handlers/VerifyIsHolidayDate.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Avoid using static access to class 'App\Language' in method 'editViewPreSave'.
Open

                'message' => App\Language::translate('LBL_DATES_SELECTED_HOLIDAYS_CONFIRM', $recordModel->getModuleName()),

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\Fields\Date' in method 'editViewPreSave'.
Open

        if (!empty(App\Fields\Date::getHolidays($recordModel->get('date_start'), $recordModel->get('due_date')))) {

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 Calendar_VerifyIsHolidayDate_Handler

The class Calendar_VerifyIsHolidayDate_Handler is not named in CamelCase.
Open

class Calendar_VerifyIsHolidayDate_Handler
{
    /**
     * EditViewPreSave handler function.
     *

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

     */

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

            $response = [

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

     * EditViewPreSave handler function.

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

    }

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

        $response = ['result' => true];

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 App\EventHandler $eventHandler

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 $response;

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

                'hash' => hash('sha256', implode('|',$recordModel->getData()))

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

        if (!empty(App\Fields\Date::getHolidays($recordModel->get('date_start'), $recordModel->get('due_date')))) {

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

                'type'=>'confirm',

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

                'message' => App\Language::translate('LBL_DATES_SELECTED_HOLIDAYS_CONFIRM', $recordModel->getModuleName()),

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

    {

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

                'result' => false,

Line exceeds 120 characters; contains 123 characters
Open

                'message' => App\Language::translate('LBL_DATES_SELECTED_HOLIDAYS_CONFIRM', $recordModel->getModuleName()),

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

    public function editViewPreSave(App\EventHandler $eventHandler)

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

        $recordModel = $eventHandler->getRecordModel();

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

class Calendar_VerifyIsHolidayDate_Handler

No space found after comma in function call
Open

                'hash' => hash('sha256', implode('|',$recordModel->getData()))

There are no issues that match your filters.

Category
Status