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;
}
Function colorize_host
has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring. Open
function colorize_host(string $alias): string
{
if (defined('NO_ANSI')) {
return $alias;
}
- 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 array_merge_alternate
has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring. Open
function array_merge_alternate(array $original, array $override): array
{
foreach ($override as $key => $value) {
if (isset($original[$key])) {
if (!is_array($original[$key])) {
- 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
Avoid too many return
statements within this method. Open
return "$colors[14]$alias\x1b[0m";
Avoid too many return
statements within this method. Open
return "<$tag>$alias</>";
Avoid too many return
statements within this method. Open
return "$tag$alias\x1b[0m";
Function parse_home_dir
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. 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"