Method __construct
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
public function __construct(Internship $i = null, \PHPWS_User $phpwsUser = null, $timestamp = null, WorkflowState $fromState = null, WorkflowState $toState = null, $note = null)
- Create a ticketCreate a ticket
Function __construct
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function __construct(Internship $i = null, \PHPWS_User $phpwsUser = null, $timestamp = null, WorkflowState $fromState = null, WorkflowState $toState = null, $note = null)
{
if(!is_null($i)){
$this->id = 0;
$this->internship_id = $i->getId();
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Missing class import via use statement (line '67', column '20'). Open
return new \PHPWS_DB('intern_change_history');
- Read upRead up
- Create a ticketCreate a ticket
- 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
The method getRelativeDate uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
}else{
$diff = round($shift / 60 / 60 / 24);
$term = "day";
}
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
ElseExpression
Since: 1.4.0
An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.
Example
class Foo
{
public function bar($flag)
{
if ($flag) {
// one branch
} else {
// another branch
}
}
}
Source https://phpmd.org/rules/cleancode.html#elseexpression
Avoid using static access to class 'Intern\WorkflowStateFactory' in method 'getFromStateFriendlyName'. Open
$fromState = WorkflowStateFactory::getState($this->from_state);
- Read upRead up
- Create a ticketCreate a ticket
- 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
The method __construct uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
$this->username = $phpwsUser->getUsername();
}
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
ElseExpression
Since: 1.4.0
An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.
Example
class Foo
{
public function bar($flag)
{
if ($flag) {
// one branch
} else {
// another branch
}
}
}
Source https://phpmd.org/rules/cleancode.html#elseexpression
Avoid using static access to class 'Intern\WorkflowStateFactory' in method 'getToStateFriendlyName'. Open
$toState = WorkflowStateFactory::getState($this->to_state);
- Read upRead up
- Create a ticketCreate a ticket
- 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
Doc-block of $i
in __construct
is phpdoc param type \Intern\Internship
which is not a permitted replacement of the nullable param type ?\Intern\Internship
declared in the signature ('?T' should be documented as 'T|null' or '?T') Open
* @param Internship $i
- Create a ticketCreate a ticket
- Exclude checks
Call to method getUsername
from undeclared class \PHPWS_User
Open
$this->username = $phpwsUser->getUsername();
- Create a ticketCreate a ticket
- Exclude checks
Doc-block of $toState
in __construct
is phpdoc param type \Intern\WorkflowState
which is not a permitted replacement of the nullable param type ?\Intern\WorkflowState
declared in the signature ('?T' should be documented as 'T|null' or '?T') Open
* @param WorkflowState $toState
- Create a ticketCreate a ticket
- Exclude checks
Doc-block of $phpwsUser
in __construct
contains phpdoc param type \Intern\PHPWS_User
which is incompatible with the param type ?\PHPWS_User
declared in the signature Open
* @param PHPWS_User $phpwsUser
- Create a ticketCreate a ticket
- Exclude checks
Parameter $phpwsUser
has undeclared type ?\PHPWS_User
Open
public function __construct(Internship $i = null, \PHPWS_User $phpwsUser = null, $timestamp = null, WorkflowState $fromState = null, WorkflowState $toState = null, $note = null)
- Create a ticketCreate a ticket
- Exclude checks
Call to method __construct
from undeclared class \PHPWS_DB
Open
return new \PHPWS_DB('intern_change_history');
- Create a ticketCreate a ticket
- Exclude checks
Doc-block of $fromState
in __construct
is phpdoc param type \Intern\WorkflowState
which is not a permitted replacement of the nullable param type ?\Intern\WorkflowState
declared in the signature ('?T' should be documented as 'T|null' or '?T') Open
* @param WorkflowState $fromState
- Create a ticketCreate a ticket
- Exclude checks
The property $internship_id is not named in camelCase. Open
class ChangeHistory extends Model{
public $internship_id;
public $username;
public $timestamp;
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
CamelCasePropertyName
Since: 0.2
It is considered best practice to use the camelCase notation to name attributes.
Example
class ClassName {
protected $property_name;
}
Source
The property $from_state is not named in camelCase. Open
class ChangeHistory extends Model{
public $internship_id;
public $username;
public $timestamp;
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
CamelCasePropertyName
Since: 0.2
It is considered best practice to use the camelCase notation to name attributes.
Example
class ClassName {
protected $property_name;
}
Source
The property $to_state is not named in camelCase. Open
class ChangeHistory extends Model{
public $internship_id;
public $username;
public $timestamp;
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
CamelCasePropertyName
Since: 0.2
It is considered best practice to use the camelCase notation to name attributes.
Example
class ClassName {
protected $property_name;
}
Source
Avoid variables with short names like $i. Configured minimum length is 3. Open
public function __construct(Internship $i = null, \PHPWS_User $phpwsUser = null, $timestamp = null, WorkflowState $fromState = null, WorkflowState $toState = null, $note = null)
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
ShortVariable
Since: 0.2
Detects when a field, local, or parameter has a very short name.
Example
class Something {
private $q = 15; // VIOLATION - Field
public static function main( array $as ) { // VIOLATION - Formal
$r = 20 + $this->q; // VIOLATION - Local
for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
$r += $this->q;
}
}
}