chippyash/semantic-version-updater

View on GitHub

Showing 26 of 26 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

class TestCase extends PTestCase
{
    /**
     * The list of paths to purge.
     *
Severity: Major
Found in src/Herrera/PHPUnit/TestCase.php and 1 other location - About 1 wk to fix
src/Herrera/PHPUnit/Extras.php on lines 17..314

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 1322.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

trait Extras
{
    /**
     * The list of paths to purge.
     *
Severity: Major
Found in src/Herrera/PHPUnit/Extras.php and 1 other location - About 1 wk to fix
src/Herrera/PHPUnit/TestCase.php on lines 18..315

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 1322.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

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
                        Severity
                        Category
                        Status
                        Source
                        Language