Missing class import via use statement (line '14', column '15'). Open
$row = (new \App\Db\Query())->select(['date' => new \yii\db\Expression('MAX(saledate)'), 'total' => new \yii\db\Expression('SUM(sum_total)')])->from('u_#__finvoice')
- 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
Missing class import via use statement (line '14', column '55'). Open
$row = (new \App\Db\Query())->select(['date' => new \yii\db\Expression('MAX(saledate)'), 'total' => new \yii\db\Expression('SUM(sum_total)')])->from('u_#__finvoice')
- 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
Missing class import via use statement (line '14', column '107'). Open
$row = (new \App\Db\Query())->select(['date' => new \yii\db\Expression('MAX(saledate)'), 'total' => new \yii\db\Expression('SUM(sum_total)')])->from('u_#__finvoice')
- 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 '\App\Language' in method 'process'. Open
'title' => \App\Language::translate('Sum invoices') . ': ' . CurrencyField::convertToUserFormat($row['total'], null, true),
- 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 'CurrencyField' in method 'process'. Open
'title' => \App\Language::translate('Sum invoices') . ': ' . CurrencyField::convertToUserFormat($row['total'], null, true),
- 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 'DateTimeField' in method 'process'. Open
'badge' => DateTimeField::convertToUserFormat($row['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
Define a constant instead of duplicating this literal "total" 3 times. Open
$row = (new \App\Db\Query())->select(['date' => new \yii\db\Expression('MAX(saledate)'), 'total' => new \yii\db\Expression('SUM(sum_total)')])->from('u_#__finvoice')
- Read upRead up
- Exclude checks
Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.
On the other hand, constants can be referenced from many places, but only need to be updated in a single place.
Noncompliant Code Example
With the default threshold of 3:
function run() { prepare('action1'); // Non-Compliant - 'action1' is duplicated 3 times execute('action1'); release('action1'); }
Compliant Solution
ACTION_1 = 'action1'; function run() { prepare(ACTION_1); execute(ACTION_1); release(ACTION_1); }
Exceptions
To prevent generating some false-positives, literals having less than 5 characters are excluded.
Call to undeclared method \App\Db\Query::select
Open
$row = (new \App\Db\Query())->select(['date' => new \yii\db\Expression('MAX(saledate)'), 'total' => new \yii\db\Expression('SUM(sum_total)')])->from('u_#__finvoice')
- Exclude checks
Call to method getRecord
from undeclared class \Vtiger_DetailView_Model
Open
->where(['deleted' => 0, 'accountid' => $viewModel->getRecord()->getId()])->one();
- Exclude checks
Call to deprecated function \CurrencyField::convertToUserFormat()
defined at /code/include/fields/CurrencyField.php:144
Open
'title' => \App\Language::translate('Sum invoices') . ': ' . CurrencyField::convertToUserFormat($row['total'], null, true),
- Exclude checks
Call to method __construct
from undeclared class \yii\db\Expression
Open
$row = (new \App\Db\Query())->select(['date' => new \yii\db\Expression('MAX(saledate)'), 'total' => new \yii\db\Expression('SUM(sum_total)')])->from('u_#__finvoice')
- Exclude checks
Parameter $viewModel
has undeclared type \Vtiger_DetailView_Model
Open
public function process(Vtiger_DetailView_Model $viewModel)
- Exclude checks
Argument 2 (user)
is null
but \CurrencyField::convertToUserFormat()
takes \App\User
defined at /code/include/fields/CurrencyField.php:144
Open
'title' => \App\Language::translate('Sum invoices') . ': ' . CurrencyField::convertToUserFormat($row['total'], null, true),
- Exclude checks
Each class must be in a namespace of at least one level (a top-level vendor name) Open
class Accounts_FInvoice_HeaderField
- Exclude checks
The class Accounts_FInvoice_HeaderField is not named in CamelCase. Open
class Accounts_FInvoice_HeaderField
{
public function process(Vtiger_DetailView_Model $viewModel)
{
$row = (new \App\Db\Query())->select(['date' => new \yii\db\Expression('MAX(saledate)'), 'total' => new \yii\db\Expression('SUM(sum_total)')])->from('u_#__finvoice')
- 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
->innerJoin('vtiger_crmentity', 'u_#__finvoice.finvoiceid = vtiger_crmentity.crmid')
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
return [
- 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
->where(['deleted' => 0, 'accountid' => $viewModel->getRecord()->getId()])->one();
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$row = (new \App\Db\Query())->select(['date' => new \yii\db\Expression('MAX(saledate)'), 'total' => new \yii\db\Expression('SUM(sum_total)')])->from('u_#__finvoice')
- Exclude checks
Line exceeds 120 characters; contains 173 characters Open
$row = (new \App\Db\Query())->select(['date' => new \yii\db\Expression('MAX(saledate)'), 'total' => new \yii\db\Expression('SUM(sum_total)')])->from('u_#__finvoice')
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
'class' => 'btn-success',
- Exclude checks
Line exceeds 120 characters; contains 139 characters Open
'title' => \App\Language::translate('Sum invoices') . ': ' . CurrencyField::convertToUserFormat($row['total'], null, true),
- 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
'badge' => DateTimeField::convertToUserFormat($row['date']),
- 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
}
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
public function process(Vtiger_DetailView_Model $viewModel)
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
if (!empty($row['date']) && !empty($row['total'])) {
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
'title' => \App\Language::translate('Sum invoices') . ': ' . CurrencyField::convertToUserFormat($row['total'], null, true),
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
return false;
- Exclude checks
Class name "Accounts_FInvoice_HeaderField" is not in camel caps format Open
class Accounts_FInvoice_HeaderField
- Exclude checks