modules/Assets/crons/Renewal.php
Missing class import via use statement (line '20', column '17'). Open
Open
$query = (new App\Db\Query())->select(['vtiger_assets.assetsid'])->from('vtiger_assets')->innerJoin('vtiger_crmentity', 'vtiger_crmentity.crmid = vtiger_assets.assetsid')->where(['vtiger_crmentity.deleted' => 0])->andWhere(['or', ['assets_renew' => $renewal], ['assets_renew' => null]]);
- 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 'Vtiger_Record_Model' in method 'process'. Open
Open
$recordModel = Vtiger_Record_Model::getInstanceById($recordId, 'Assets');
- 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 \Vtiger_Record_Model::updateRenewal
Open
Open
$recordModel->updateRenewal();
- Exclude checks
Call to undeclared method \App\Db\Query::select
Open
Open
$query = (new App\Db\Query())->select(['vtiger_assets.assetsid'])->from('vtiger_assets')->innerJoin('vtiger_crmentity', 'vtiger_crmentity.crmid = vtiger_assets.assetsid')->where(['vtiger_crmentity.deleted' => 0])->andWhere(['or', ['assets_renew' => $renewal], ['assets_renew' => null]]);
- Exclude checks
Each class must be in a namespace of at least one level (a top-level vendor name) Open
Open
class Assets_Renewal_Cron extends \App\CronHandler
- Exclude checks
The class Assets_Renewal_Cron is not named in CamelCase. Open
Open
class Assets_Renewal_Cron extends \App\CronHandler
{
/** {@inheritdoc} */
public function process()
{
- 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
$recordModel = Vtiger_Record_Model::getInstanceById($recordId, 'Assets');
- Exclude checks
Line exceeds 120 characters; contains 295 characters Open
Open
$query = (new App\Db\Query())->select(['vtiger_assets.assetsid'])->from('vtiger_assets')->innerJoin('vtiger_crmentity', 'vtiger_crmentity.crmid = vtiger_assets.assetsid')->where(['vtiger_crmentity.deleted' => 0])->andWhere(['or', ['assets_renew' => $renewal], ['assets_renew' => null]]);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
/** {@inheritdoc} */
- 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
$dataReader = $query->createCommand()->query();
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
while ($recordId = $dataReader->readColumn(0)) {
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
$recordModel->updateRenewal();
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
$dataReader->close();
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
public function process()
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
$query = (new App\Db\Query())->select(['vtiger_assets.assetsid'])->from('vtiger_assets')->innerJoin('vtiger_crmentity', 'vtiger_crmentity.crmid = vtiger_assets.assetsid')->where(['vtiger_crmentity.deleted' => 0])->andWhere(['or', ['assets_renew' => $renewal], ['assets_renew' => null]]);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
$renewal = ['PLL_PLANNED', 'PLL_WAITING_FOR_RENEWAL', ''];
- 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
Class name "Assets_Renewal_Cron" is not in camel caps format Open
Open
class Assets_Renewal_Cron extends \App\CronHandler
- Exclude checks