modules/Calendar/handlers/VerifyIsHolidayDate.php
Avoid using static access to class 'App\Language' in method 'editViewPreSave'. Open
Open
'message' => App\Language::translate('LBL_DATES_SELECTED_HOLIDAYS_CONFIRM', $recordModel->getModuleName()),
- Read upRead up
- Exclude checks
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
Open
if (!empty(App\Fields\Date::getHolidays($recordModel->get('date_start'), $recordModel->get('due_date')))) {
- Read upRead up
- Exclude checks
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
Open
class Calendar_VerifyIsHolidayDate_Handler
- Exclude checks
The class Calendar_VerifyIsHolidayDate_Handler is not named in CamelCase. Open
Open
class Calendar_VerifyIsHolidayDate_Handler
{
/**
* EditViewPreSave handler function.
*
- Read upRead up
- Exclude checks
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
Open
*/
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
$response = [
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
* EditViewPreSave handler function.
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
}
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
$response = ['result' => true];
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
];
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
* @param App\EventHandler $eventHandler
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
/**
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
return $response;
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
'hash' => hash('sha256', implode('|',$recordModel->getData()))
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
if (!empty(App\Fields\Date::getHolidays($recordModel->get('date_start'), $recordModel->get('due_date')))) {
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
'type'=>'confirm',
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
'message' => App\Language::translate('LBL_DATES_SELECTED_HOLIDAYS_CONFIRM', $recordModel->getModuleName()),
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
{
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
'result' => false,
- Exclude checks
Line exceeds 120 characters; contains 123 characters Open
Open
'message' => App\Language::translate('LBL_DATES_SELECTED_HOLIDAYS_CONFIRM', $recordModel->getModuleName()),
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
public function editViewPreSave(App\EventHandler $eventHandler)
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
}
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
*
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
$recordModel = $eventHandler->getRecordModel();
- Exclude checks
Class name "Calendar_VerifyIsHolidayDate_Handler" is not in camel caps format Open
Open
class Calendar_VerifyIsHolidayDate_Handler
- Exclude checks
No space found after comma in function call Open
Open
'hash' => hash('sha256', implode('|',$recordModel->getData()))
- Exclude checks