Avoid using static access to class 'App\Language' in method 'getPageTitle'. Open
return App\Language::translate($sourceModule, $sourceModule) . ' - ' . App\Language::translate('LBL_SORT_WORKFLOW_ACTIONS', $request->getModule(false));
- 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 'Settings_Workflows_Module_Model' in method 'process'. Open
$moduleWorkflowActions = Settings_Workflows_Module_Model::getWorkflowActionsForModule($sourceModule);
- 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\Language' in method 'getPageTitle'. Open
return App\Language::translate($sourceModule, $sourceModule) . ' - ' . App\Language::translate('LBL_SORT_WORKFLOW_ACTIONS', $request->getModule(false));
- 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
Call to undeclared method \Settings_Workflows_SortActionsModal_View::getViewer
Open
$viewer = $this->getViewer($request);
- Exclude checks
Avoid excessively long variable names like $moduleWorkflowActions. Keep variable name length under 20. Open
$moduleWorkflowActions = Settings_Workflows_Module_Model::getWorkflowActionsForModule($sourceModule);
- Read upRead up
- Exclude checks
LongVariable
Since: 0.2
Detects when a field, formal or local variable is declared with a long name.
Example
class Something {
protected $reallyLongIntName = -3; // VIOLATION - Field
public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
$otherReallyLongName = -5; // VIOLATION - Local
for ($interestingIntIndex = 0; // VIOLATION - For
$interestingIntIndex < 10;
$interestingIntIndex++ ) {
}
}
}
Source https://phpmd.org/rules/naming.html#longvariable
Each class must be in a namespace of at least one level (a top-level vendor name) Open
class Settings_Workflows_SortActionsModal_View extends \App\Controller\ModalSettings
- Exclude checks
The class Settings_Workflows_SortActionsModal_View is not named in CamelCase. Open
class Settings_Workflows_SortActionsModal_View extends \App\Controller\ModalSettings
{
/** {@inheritdoc} */
protected $pageTitle = 'LBL_SORT_WORKFLOW_ACTIONS';
- 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
$viewer = $this->getViewer($request);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$moduleWorkflowActions = Settings_Workflows_Module_Model::getWorkflowActionsForModule($sourceModule);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
}
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
/** {@inheritdoc} */
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
public function getPageTitle(App\Request $request)
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
/** {@inheritdoc} */
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
return App\Language::translate($sourceModule, $sourceModule) . ' - ' . App\Language::translate('LBL_SORT_WORKFLOW_ACTIONS', $request->getModule(false));
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
public function process(App\Request $request)
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$sourceModule = $request->getByType('sourceModule', \App\Purifier::STANDARD);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$viewer->assign('WORKFLOW_ACTIONS', $moduleWorkflowActions);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
/** {@inheritdoc} */
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
public $modalIcon = 'fas fa-sort';
- Exclude checks
Line exceeds 120 characters; contains 160 characters Open
return App\Language::translate($sourceModule, $sourceModule) . ' - ' . App\Language::translate('LBL_SORT_WORKFLOW_ACTIONS', $request->getModule(false));
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$viewer->view('SortActionsModal.tpl', $request->getModule(false));
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
{
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
/** {@inheritdoc} */
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
{
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
protected $pageTitle = 'LBL_SORT_WORKFLOW_ACTIONS';
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
/** {@inheritdoc} */
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$sourceModule = $request->getByType('sourceModule', \App\Purifier::STANDARD);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
}
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
public $showFooter = true;
- Exclude checks
Class name "Settings_Workflows_SortActionsModal_View" is not in camel caps format Open
class Settings_Workflows_SortActionsModal_View extends \App\Controller\ModalSettings
- Exclude checks