digipolisgent/robo-digipolis-deploy

View on GitHub

Showing 12 of 34 total issues

SshPhpseclibAdapter has 44 functions (exceeds 20 allowed). Consider refactoring.
Open

class SshPhpseclibAdapter implements SshAdapterInterface
{

    /**
     * The phpseclib ssh client.
Severity: Minor
Found in src/Ssh/Adapter/SshPhpseclibAdapter.php - About 6 hrs to fix

    Method run has 81 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function run()
        {
    
            $ssh = call_user_func(
                [$this->sshFactory, 'create'],
    Severity: Major
    Found in src/PushPackage.php - About 3 hrs to fix

      Method run has 63 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function run()
          {
              try {
                  $ssh = call_user_func(
                      [$this->sshFactory, 'create'],
      Severity: Major
      Found in src/Ssh.php - About 2 hrs to fix

        Method getDumpCommandLine has 32 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function getDumpCommandLine($outputPath)
            {
                $this->config += [
                    'ignoreTables' => [],
                    'structureTables' => [],
        Severity: Minor
        Found in src/BackupManager/Databases/MysqlDatabase.php - About 1 hr to fix

          Function run has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

              public function run()
              {
                  try {
                      $ssh = call_user_func(
                          [$this->sshFactory, 'create'],
          Severity: Minor
          Found in src/Ssh.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

          Method run has 31 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function run()
              {
                  $sftp = call_user_func([$this->SFTPFactory, 'create'], $this->host, $this->auth, $this->port, $this->timeout);
                  $errorMessage = '';
                  foreach ($this->commandStack as $command) {
          Severity: Minor
          Found in src/SFTP.php - About 1 hr to fix

            Method run has 28 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function run()
                {
                    try {
                        /**
                         * The backup manager
            Severity: Minor
            Found in src/DatabaseRestore.php - About 1 hr to fix

              Function cleanDir has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

                  protected function cleanDir($dir, $keep)
                  {
                      $finder = clone $this->finder;
                      $finder->in($dir);
                      $finder->depth(0);
              Severity: Minor
              Found in src/PartialCleanDirs.php - About 55 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

              Function expandTableNames has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

                  protected function expandTableNames()
                  {
                      if (empty($this->tableList)) {
                          $dsn = 'mysql:host=' . $this->config['host']
                              . ';port=' . $this->config['port']
              Severity: Minor
              Found in src/BackupManager/Databases/MysqlDatabase.php - About 45 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

              Method digipolisPushPackage has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                      $user,
                      $host,
                      $package,
                      $destination = null,
                      $opts = [
              Severity: Minor
              Found in src/Robo/Plugin/Commands/DigipolisDeployCommands.php - About 35 mins to fix

                Function doSort has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                    protected function doSort(Finder $finder)
                    {
                        switch ($this->sort) {
                            case static::SORT_NAME:
                                $finder->sortByName();
                Severity: Minor
                Found in src/PartialCleanDirs.php - About 35 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

                Function run has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                    public function run()
                    {
                        $sftp = call_user_func([$this->SFTPFactory, 'create'], $this->host, $this->auth, $this->port, $this->timeout);
                        $errorMessage = '';
                        foreach ($this->commandStack as $command) {
                Severity: Minor
                Found in src/SFTP.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

                Severity
                Category
                Status
                Source
                Language