deployphp/deployer

View on GitHub
src/Support/helpers.php

Summary

Maintainability
C
1 day
Test Coverage

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;
    }
Severity: Major
Found in src/Support/helpers.php - About 3 hrs to fix

    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;
        }
    Severity: Minor
    Found in src/Support/helpers.php - About 2 hrs to fix

    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)
    {
        foreach ($override as $key => $value) {
            if (isset($original[$key])) {
                if (!is_array($original[$key])) {
    Severity: Minor
    Found in src/Support/helpers.php - About 1 hr to fix

    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 "$tag$alias\x1b[0m";
    Severity: Major
    Found in src/Support/helpers.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

          return "<$tag>$alias</>";
      Severity: Major
      Found in src/Support/helpers.php - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

                    return "$colors[14]$alias\x1b[0m";
        Severity: Major
        Found in src/Support/helpers.php - About 30 mins to fix

          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 || 0 === strpos($path, '~/')) {
                  if (isset($_SERVER['HOME'])) {
                      $home = $_SERVER['HOME'];
          Severity: Minor
          Found in src/Support/helpers.php - About 25 mins to fix

          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

          There are no issues that match your filters.

          Category
          Status