chippyash/semantic-version-updater

View on GitHub

Showing 24 of 26 total issues

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/Herrera/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

Function copyPath has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
Open

    public function copyPath($from, $to, $replace = true, $purge = true)
    {
        if (false === file_exists($from)) {
            throw FileSystemException::invalidPath($from);
        }
Severity: Minor
Found in src/Herrera/PHPUnit/TestCase.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 copyPath has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
Open

    public function copyPath($from, $to, $replace = true, $purge = true)
    {
        if (false === file_exists($from)) {
            throw FileSystemException::invalidPath($from);
        }
Severity: Minor
Found in src/Herrera/PHPUnit/Extras.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 purgePath has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
Open

    public function purgePath($path)
    {
        if (false === file_exists($path)) {
            throw FileSystemException::invalidPath($path);
        }
Severity: Minor
Found in src/Herrera/PHPUnit/Extras.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 purgePath has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
Open

    public function purgePath($path)
    {
        if (false === file_exists($path)) {
            throw FileSystemException::invalidPath($path);
        }
Severity: Minor
Found in src/Herrera/PHPUnit/TestCase.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

Method compareIdentifiers has 43 lines of code (exceeds 25 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/Herrera/Version/Comparator.php - About 1 hr to fix

    Method copyPath has 38 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function copyPath($from, $to, $replace = true, $purge = true)
        {
            if (false === file_exists($from)) {
                throw FileSystemException::invalidPath($from);
            }
    Severity: Minor
    Found in src/Herrera/PHPUnit/TestCase.php - About 1 hr to fix

      Method copyPath has 38 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function copyPath($from, $to, $replace = true, $purge = true)
          {
              if (false === file_exists($from)) {
                  throw FileSystemException::invalidPath($from);
              }
      Severity: Minor
      Found in src/Herrera/PHPUnit/Extras.php - About 1 hr to fix

        Method execute has 34 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            protected function execute(InputInterface $input, OutputInterface $output): int
            {
                $fileToUpdate = $input->getOption('file');
                if ($input->getOption('init')) {
                    $this->updateVersion('0.0.0', $fileToUpdate, $output);
        Severity: Minor
        Found in src/Chippyash/Vupdate/Command/RunCommand.php - About 1 hr to fix

          Function importComponents has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
          Open

              public function importComponents(array $components)
              {
                  if (isset($components[Parser::BUILD])) {
                      $this->build = $components[Parser::BUILD];
                  } else {
          Severity: Minor
          Found in src/Herrera/Version/Builder.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 importComponents has 26 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function importComponents(array $components)
              {
                  if (isset($components[Parser::BUILD])) {
                      $this->build = $components[Parser::BUILD];
                  } else {
          Severity: Minor
          Found in src/Herrera/Version/Builder.php - About 1 hr to fix

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

                    $major = 0,
                    $minor = 0,
                    $patch = 0,
                    array $pre = array(),
                    array $build = array()
            Severity: Minor
            Found in src/Herrera/Version/Version.php - About 35 mins to fix

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

                  protected function execute(InputInterface $input, OutputInterface $output): int
                  {
                      $fileToUpdate = $input->getOption('file');
                      if ($input->getOption('init')) {
                          $this->updateVersion('0.0.0', $fileToUpdate, $output);
              Severity: Minor
              Found in src/Chippyash/Vupdate/Command/RunCommand.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

              Avoid too many return statements within this method.
              Open

                              return self::LESS_THAN;
              Severity: Major
              Found in src/Herrera/Version/Comparator.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                        return self::EQUAL_TO;
                Severity: Major
                Found in src/Herrera/Version/Comparator.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                                  return $x;
                  Severity: Major
                  Found in src/Herrera/Version/Comparator.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                            return Command::SUCCESS;
                    Severity: Major
                    Found in src/Chippyash/Vupdate/Command/RunCommand.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                              return self::compareIdentifiers(
                                  $left->getPreRelease(),
                                  $right->getPreRelease()
                              );
                      Severity: Major
                      Found in src/Herrera/Version/Comparator.php - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                                        return $y;
                        Severity: Major
                        Found in src/Herrera/Version/Comparator.php - About 30 mins to fix

                          Avoid too many return statements within this method.
                          Open

                                          return $y;
                          Severity: Major
                          Found in src/Herrera/Version/Comparator.php - About 30 mins to fix
                            Severity
                            Category
                            Status
                            Source
                            Language