deployphp/deployer

View on GitHub

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) {
Severity: Minor
Found in src/Executor/Master.php - About 1 day 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

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.
 */

Severity: Major
Found in contrib/ispmanager.php - About 1 day to fix

    Function parse has a Cognitive Complexity of 65 (exceeds 5 allowed). Consider refactoring.
    Open

        public function parse(string $content)
        {
            $comment = '';
            $desc = '';
            $currentTask = null;
    Severity: Minor
    Found in src/Documentation/DocRecipe.php - About 1 day 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

    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>
    Severity: Major
    Found in src/functions.php - About 1 day to fix

      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();
      Severity: Minor
      Found in src/Command/BlackjackCommand.php - About 7 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

      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();
      Severity: Major
      Found in src/Command/BlackjackCommand.php - About 6 hrs to fix

        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);
        Severity: Minor
        Found in src/Importer/Importer.php - About 6 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

        Host has 42 functions (exceeds 20 allowed). Consider refactoring.
        Open

        class Host
        {
            /**
             * @var Configuration $config
             */
        Severity: Minor
        Found in src/Host/Host.php - About 5 hrs to fix

          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 = "";
          Severity: Minor
          Found in src/Executor/Messenger.php - About 5 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

          Method parse has 123 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function parse(string $content)
              {
                  $comment = '';
                  $desc = '';
                  $currentTask = null;
          Severity: Major
          Found in src/Documentation/DocRecipe.php - About 4 hrs to fix

            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' => [],
            Severity: Minor
            Found in src/Utility/Rsync.php - About 4 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

            File magento2.php has 362 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            <?php
            
            namespace Deployer;
            
            require_once __DIR__ . '/common.php';
            Severity: Minor
            Found in recipe/magento2.php - About 4 hrs to fix

              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
              Severity: Major
              Found in src/Command/InitCommand.php - About 4 hrs to fix

                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>
                Severity: Minor
                Found in src/Command/BlackjackCommand.php - About 4 hrs to fix

                  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' => [],
                  Severity: Major
                  Found in src/Utility/Rsync.php - About 3 hrs to fix

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

                      Task has 30 functions (exceeds 20 allowed). Consider refactoring.
                      Open

                      class Task
                      {
                          /**
                           * @var string
                           */
                      Severity: Minor
                      Found in src/Task/Task.php - About 3 hrs to fix

                        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

                          Method __construct has 80 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              public function __construct(Application $console)
                              {
                                  parent::__construct();
                          
                                  /******************************
                          Severity: Major
                          Found in src/Deployer.php - About 3 hrs to fix

                            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) {
                            Severity: Minor
                            Found in src/Component/PharUpdate/Version/Comparator.php - About 3 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

                            Severity
                            Category
                            Status
                            Source
                            Language