Showing 143 of 189 total issues
Function run
has a Cognitive Complexity of 82 (exceeds 5 allowed). Consider refactoring. Open
public function run(array $tasks, array $hosts, ?Planner $plan = null): int
{
$globalLimit = (int) $this->input->getOption('limit') ?: count($hosts);
foreach ($tasks as $task) {
- 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
File ispmanager.php
has 616 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
/*
* This recipe for work with ISPManager Lite panel by API.
*/
Function parse
has a Cognitive Complexity of 65 (exceeds 5 allowed). Consider refactoring. Open
public function parse(string $content)
{
$comment = '';
$desc = '';
$currentTask = null;
- 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
File functions.php
has 540 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
declare(strict_types=1);
/* (c) Anton Medvedev <anton@medv.io>
Function execute
has a Cognitive Complexity of 48 (exceeds 5 allowed). Consider refactoring. Open
protected function execute(Input $input, Output $output): int
{
$this->input = $input;
$this->output = $output;
$this->telemetry();
- 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
Method execute
has 166 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected function execute(Input $input, Output $output): int
{
$this->input = $input;
$this->output = $output;
$this->telemetry();
Function tasks
has a Cognitive Complexity of 40 (exceeds 5 allowed). Consider refactoring. Open
protected static function tasks(array $tasks)
{
$buildTask = function ($name, $steps) {
$body = function () {};
$task = task($name, $body);
- 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
Host
has 42 functions (exceeds 20 allowed). Consider refactoring. Open
class Host
{
/**
* @var Configuration $config
*/
Function renderException
has a Cognitive Complexity of 35 (exceeds 5 allowed). Consider refactoring. Open
public function renderException(Throwable $exception, Host $host): void
{
if ($exception instanceof RunException) {
$message = "";
- 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
Method parse
has 123 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function parse(string $content)
{
$comment = '';
$desc = '';
$currentTask = null;
Function call
has a Cognitive Complexity of 33 (exceeds 5 allowed). Consider refactoring. Open
public function call(Host $host, $source, string $destination, array $config = []): void
{
$defaults = [
'timeout' => null,
'options' => [],
- 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
File magento2.php
has 362 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
namespace Deployer;
require_once __DIR__ . '/common.php';
Method execute
has 103 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected function execute(InputInterface $input, OutputInterface $output): int
{
if (getenv('COLORTERM') === 'truecolor') {
$output->write(
<<<EOF
File BlackjackCommand.php
has 338 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
declare(strict_types=1);
/* (c) Anton Medvedev <anton@medv.io>
Method call
has 96 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function call(Host $host, $source, string $destination, array $config = []): void
{
$defaults = [
'timeout' => null,
'options' => [],
Method tasks
has 94 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected static function tasks(array $tasks)
{
$buildTask = function ($name, $steps) {
$body = function () {};
$task = task($name, $body);
Task
has 30 functions (exceeds 20 allowed). Consider refactoring. Open
class Task
{
/**
* @var string
*/
Method colorize_host
has 80 lines of code (exceeds 25 allowed). Consider refactoring. Open
function colorize_host(string $alias): string
{
if (defined('NO_ANSI')) {
return $alias;
}
Method __construct
has 80 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function __construct(Application $console)
{
parent::__construct();
/******************************
Function compareIdentifiers
has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring. Open
public static function compareIdentifiers(array $left, array $right)
{
if ($left && empty($right)) {
return self::LESS_THAN;
} elseif (empty($left) && $right) {
- 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"