modules/Settings/SalesProcesses/actions/SaveAjax.php
Missing class import via use statement (line '25', column '19'). Open
Open
$response = new Vtiger_Response();
- Read upRead up
- Exclude checks
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 'Settings_SalesProcesses_Module_Model' in method 'updateConfig'. Open
Open
$moduleModel = Settings_SalesProcesses_Module_Model::getCleanInstance();
- 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 'updateConfig'. Open
Open
'message' => \App\Language::translate('LBL_SAVE_CONFIG', $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
Each class must be in a namespace of at least one level (a top-level vendor name) Open
Open
class Settings_SalesProcesses_SaveAjax_Action extends Settings_Vtiger_Basic_Action
- Exclude checks
The class Settings_SalesProcesses_SaveAjax_Action is not named in CamelCase. Open
Open
class Settings_SalesProcesses_SaveAjax_Action extends Settings_Vtiger_Basic_Action
{
public function __construct()
{
parent::__construct();
- 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
'success' => $moduleModel->setConfig($param),
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
$this->exposeMethod('updateConfig');
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
$param = [
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
$response = new Vtiger_Response();
- 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
'val' => $request->getBoolean('val') ? 'true' : 'false'
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
public function __construct()
- 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->emit();
- 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
'type' => $request->getByType('type', 'Alnum'),
- 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
$moduleModel = Settings_SalesProcesses_Module_Model::getCleanInstance();
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
'param' => $request->getByType('param', 'Alnum'),
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
'message' => \App\Language::translate('LBL_SAVE_CONFIG', $request->getModule(false)),
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
$response->setResult([
- 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
parent::__construct();
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
public function updateConfig(App\Request $request)
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
{
- Exclude checks
Class name "Settings_SalesProcesses_SaveAjax_Action" is not in camel caps format Open
Open
class Settings_SalesProcesses_SaveAjax_Action extends Settings_Vtiger_Basic_Action
- Exclude checks