Showing 6,805 of 6,805 total issues
Missing class import via use statement (line '296', column '50'). Open
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertStringStartsWith', \func_get_args()));
- 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 '726', column '50'). Open
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsFloat', \func_get_args()));
- 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 '462', column '50'). Open
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileNotExists', \func_get_args()));
- 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 '804', column '50'). Open
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsScalar', \func_get_args()));
- 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 '503', column '50'). Open
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsEmpty', \func_get_args()));
- 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 '882', column '50'). Open
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsNotNumeric', \func_get_args()));
- 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 '517', column '50'). Open
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertArrayHasKey', \func_get_args()));
- 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
The method UseHighContrastColor has a boolean flag argument $aFlg, which is a certain sign of a Single Responsibility Principle violation. Open
public function UseHighContrastColor($aFlg = true, $aBW = false)
- Read upRead up
- Exclude checks
BooleanArgumentFlag
Since: 1.4.0
A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.
Example
class Foo {
public function bar($flag = true) {
}
}
Source https://phpmd.org/rules/cleancode.html#booleanargumentflag
The method ShowLegend has a boolean flag argument $aFlg, which is a certain sign of a Single Responsibility Principle violation. Open
public function ShowLegend($aFlg = true)
- Read upRead up
- Exclude checks
BooleanArgumentFlag
Since: 1.4.0
A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.
Example
class Foo {
public function bar($flag = true) {
}
}
Source https://phpmd.org/rules/cleancode.html#booleanargumentflag
The method __construct has a boolean flag argument $datax, which is a certain sign of a Single Responsibility Principle violation. Open
public function __construct($datay, $datax = false)
- Read upRead up
- Exclude checks
BooleanArgumentFlag
Since: 1.4.0
A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.
Example
class Foo {
public function bar($flag = true) {
}
}
Source https://phpmd.org/rules/cleancode.html#booleanargumentflag
The method SetBreakStyle has a boolean flag argument $aFlg, which is a certain sign of a Single Responsibility Principle violation. Open
public function SetBreakStyle($aFlg = true, $aLineStyle = 'dotted', $aLineWeight = 1)
- Read upRead up
- Exclude checks
BooleanArgumentFlag
Since: 1.4.0
A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.
Example
class Foo {
public function bar($flag = true) {
}
}
Source https://phpmd.org/rules/cleancode.html#booleanargumentflag
The method SetBarCenter has a boolean flag argument $aFlag, which is a certain sign of a Single Responsibility Principle violation. Open
public function SetBarCenter($aFlag = true)
- Read upRead up
- Exclude checks
BooleanArgumentFlag
Since: 1.4.0
A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.
Example
class Foo {
public function bar($flag = true) {
}
}
Source https://phpmd.org/rules/cleancode.html#booleanargumentflag
The method SetFillFromYMin has a boolean flag argument $f, which is a certain sign of a Single Responsibility Principle violation. Open
public function SetFillFromYMin($f = true)
- Read upRead up
- Exclude checks
BooleanArgumentFlag
Since: 1.4.0
A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.
Example
class Foo {
public function bar($flag = true) {
}
}
Source https://phpmd.org/rules/cleancode.html#booleanargumentflag
The method FastStroke has a boolean flag argument $exist_x, which is a certain sign of a Single Responsibility Principle violation. Open
public function FastStroke($img, $xscale, $yscale, $aStartPoint = 0, $exist_x = true)
- Read upRead up
- Exclude checks
BooleanArgumentFlag
Since: 1.4.0
A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.
Example
class Foo {
public function bar($flag = true) {
}
}
Source https://phpmd.org/rules/cleancode.html#booleanargumentflag
Missing class import via use statement (line '86', column '50'). Open
return $this->getScenario()->runStep(new \Codeception\Step\Action('expectThrowable', \func_get_args()));
- 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 '248', column '50'). Open
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotContains', \func_get_args()));
- 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 '327', column '50'). Open
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertEmpty', \func_get_args()));
- 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 '629', column '50'). Open
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertStringNotContainsString', \func_get_args()));
- 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 '700', column '50'). Open
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsArray', \func_get_args()));
- 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 '713', column '50'). Open
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsBool', \func_get_args()));
- 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();
}