Showing 143 of 189 total issues
Avoid too many return
statements within this method. Open
Open
return !empty($this['log'])
? new FileHandler($this['log'])
: new NullHandler();
Avoid too many return
statements within this method. Open
Open
return "<$tag>$alias</>";
Avoid too many return
statements within this method. Open
Open
return new Printer($c['output']);
Avoid too many return
statements within this method. Open
Open
return '-vvv';
Avoid too many return
statements within this method. Open
Open
return new Rsync($c['pop'], $c['output']);
Avoid too many return
statements within this method. Open
Open
return self::LESS_THAN;
Avoid too many return
statements within this method. Open
Open
return $y;
Avoid too many return
statements within this method. Open
Open
return new HostCollection();
Avoid too many return
statements within this method. Open
Open
return new ScriptManager($c['tasks']);
Avoid too many return
statements within this method. Open
Open
return new Selector($c['hosts']);
Avoid too many return
statements within this method. Open
Open
return new Logger($this['log_handler']);
Avoid too many return
statements within this method. Open
Open
return false;
Avoid too many return
statements within this method. Open
Open
return "$tag$alias\x1b[0m";
Avoid too many return
statements within this method. Open
Open
return new Response(200, $answer);
Avoid too many return
statements within this method. Open
Open
return $y;
Avoid too many return
statements within this method. Open
Open
return self::compareIdentifiers(
$left->getPreRelease(),
$right->getPreRelease(),
);
Avoid too many return
statements within this method. Open
Open
return new SshClient($c['output'], $c['pop'], $c['logger']);
Avoid too many return
statements within this method. Open
Open
return new TaskCollection();
Function parse_home_dir
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
function parse_home_dir(string $path): string
{
if ('~' === $path || str_starts_with($path, '~/')) {
if (isset($_SERVER['HOME'])) {
$home = $_SERVER['HOME'];
- 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
Function execute
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
protected function execute(Input $input, Output $output): int
{
$this->deployer->input = $input;
$this->deployer->output = $output;
- 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"