Showing 47 of 58 total issues
Method loopInfiniteBar
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function loopInfiniteBar(int $totalSteps = 20, int $blockSize = 3): void
{
$step = floor($this->barSize / $totalSteps);
$originalBlockSize = $blockSize;
Method oneHandler
has 33 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function oneHandler(Context $context): void
{
self::console('Just starting');
// Recover the parameter by the key
Function loopInfiniteBar
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
Open
public function loopInfiniteBar(int $totalSteps = 20, int $blockSize = 3): void
{
$step = floor($this->barSize / $totalSteps);
$originalBlockSize = $blockSize;
- Read upRead up
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
The method loopInfiniteBar uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
Open
} else {
$nLeftSpaces += $this->barSize - $sumSpaces;
}
- Read upRead up
- 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
Call to undeclared method \Andrey\Cli\Examples\InfiniteProgressBar\Service::loopInfiniteBar
Open
Open
$this->loopInfiniteBar();
- Exclude checks
Call to undeclared method \Andrey\Cli\Examples\ProgressBar\Service::endProgressBar
Open
Open
$this->endProgressBar();
- Exclude checks
syntax error, unexpected 'ConsoleLevel' (T_STRING)
Open
Open
enum ConsoleLevel
- Exclude checks
syntax error, unexpected ')'
Open
Open
);
- Exclude checks
Reference to constant INFO
from undeclared class \Andrey\Cli\Types\ConsoleLevel
Open
Open
self::center('And we are done :)', ConsoleLevel::INFO);
- Exclude checks
Static call to undeclared method \Andrey\Cli\Examples\BasicService\Service::console
Open
Open
self::console("Look at this nice param --> {$arg} <--");
- Exclude checks
Call to method get
from undeclared class \Andrey\Cli\Types\Context
Open
Open
$thisExists = $context->get('required');
- Exclude checks
Static call to undeclared method \Andrey\Cli\Examples\ParamsValidation\Service::console
Open
Open
self::console("Check it out: >> {$thisExists} <<", ConsoleLevel::SUCCESS);
- Exclude checks
syntax error, unexpected 'public' (T_PUBLIC), expecting variable (T_VARIABLE)
Open
Open
public string $key,
- Exclude checks
syntax error, unexpected 'class' (T_CLASS)
Open
Open
readonly class Context
- Exclude checks
syntax error, unexpected ')'
Open
Open
);
- Exclude checks
Reference to constant HIGHLIGHT
from undeclared class \Andrey\Cli\Types\ConsoleLevel
Open
Open
self::center('Check this really nice infinite progress bar', ConsoleLevel::HIGHLIGHT);
- Exclude checks
Reference to constant WARNING
from undeclared class \Andrey\Cli\Types\ConsoleLevel
Open
Open
self::console("OH NO >.<", ConsoleLevel::WARNING);
- Exclude checks
Parameter $context
has undeclared type \Andrey\Cli\Types\Context
Open
Open
public function process(Context $context): void
- Exclude checks
syntax error, unexpected 'class' (T_CLASS)
Open
Open
readonly class MyCommand extends App
- Exclude checks
syntax error, unexpected 'int' (T_STRING), expecting function (T_FUNCTION) or const (T_CONST)
Open
Open
private int $totalItems;
- Exclude checks