tests/Base/I_Privilege.php
Missing class import via use statement (line '20', column '20'). Open
Open
$ticketId = (new \App\Db\Query())->from('vtiger_troubletickets')->scalar();
- 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\PrivilegeUtil' in method 'testPrivilegeUtils'. Open
Open
$this->assertNotFalse(\App\PrivilegeUtil::testPrivileges($ticketId));
- 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 \Tests\Base\I_Privilege::assertNotFalse
Open
Open
$this->assertNotFalse(\App\PrivilegeUtil::testPrivileges($ticketId));
- Exclude checks
Call to undeclared method \App\Db\Query::from
Open
Open
$ticketId = (new \App\Db\Query())->from('vtiger_troubletickets')->scalar();
- Exclude checks
The class I_Privilege is not named in CamelCase. Open
Open
class I_Privilege extends \Tests\Base
{
/**
* Testing Privilege Utils.
*/
- 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
/**
- 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
* Testing Privilege Utils.
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
public function testPrivilegeUtils()
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
$this->assertNotFalse(\App\PrivilegeUtil::testPrivileges($ticketId));
- 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
$ticketId = (new \App\Db\Query())->from('vtiger_troubletickets')->scalar();
- Exclude checks
Class name "I_Privilege" is not in camel caps format Open
Open
class I_Privilege extends \Tests\Base
- Exclude checks