tollwerk/admin

View on GitHub
src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php

Summary

Maintainability
F
1 wk
Test Coverage

File DoctrineStorageAdapterStrategy.php has 567 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

/**
 * admin
 *
Severity: Major
Found in src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php - About 1 day to fix

    DoctrineStorageAdapterStrategy has 28 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class DoctrineStorageAdapterStrategy implements StorageAdapterStrategyInterface
    {
        /**
         * Doctrine entity manager
         *
    Severity: Minor
    Found in src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php - About 3 hrs to fix

      Function loadDomain has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

          public function loadDomain($name, AccountInterface $account = null, $vhostDocroot = null)
          {
              $doctrineDomain = $this->domainRepository->findOneBy(['name' => $name]);
      
              // If the domain is unknown

      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 loadDomain has 32 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function loadDomain($name, AccountInterface $account = null, $vhostDocroot = null)
          {
              $doctrineDomain = $this->domainRepository->findOneBy(['name' => $name]);
      
              // If the domain is unknown

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

            public function createVhost(AccountInterface $account, DomainInterface $domain, $docroot, $type)
            {
                $doctrineAccount = $this->accountRepository->findOneBy(['name' => $account->getName()]);
        
                // If the account is unknown

          Method addVhostDomain has 30 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function addVhostDomain(AccountInterface $account, $docroot, DomainInterface $domain)
              {
                  $doctrineAccount = $this->accountRepository->findOneBy(['name' => $account->getName()]);
          
                  // If the account is unknown

            Method removeVhostDomain has 29 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function removeVhostDomain(AccountInterface $account, $docroot, DomainInterface $domain)
                {
                    $doctrineAccount = $this->accountRepository->findOneBy(['name' => $account->getName()]);
            
                    // If the account is unknown

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

                  public function removeVhostPort(AccountInterface $account, $docroot, $protocol, $port)
                  {
                      $doctrineAccount = $this->accountRepository->findOneBy(['name' => $account->getName()]);
              
                      // If the account is unknown
              Severity: Minor
              Found in src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.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 addVhostPort has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function addVhostPort(AccountInterface $account, $docroot, $protocol, $port)
                  {
                      $doctrineAccount = $this->accountRepository->findOneBy(['name' => $account->getName()]);
              
                      // If the account is unknown
              Severity: Minor
              Found in src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.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

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

                  protected function loadFromDoctrineVhost(DoctrineVhost $doctrineVhost)
                  {
                      $doctrinePrimaryDomain = $doctrineVhost->getPrimarydomain();
                      $primaryDomain = $this->loadFromDoctrineDomain($doctrinePrimaryDomain);
              
              
              Severity: Minor
              Found in src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.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

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

                  public function addVhostDomain(AccountInterface $account, $docroot, DomainInterface $domain)
                  {
                      $doctrineAccount = $this->accountRepository->findOneBy(['name' => $account->getName()]);
              
                      // If the account is unknown
              Severity: Minor
              Found in src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.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 removeVhostDomain has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function removeVhostDomain(AccountInterface $account, $docroot, DomainInterface $domain)
                  {
                      $doctrineAccount = $this->accountRepository->findOneBy(['name' => $account->getName()]);
              
                      // If the account is unknown
              Severity: Minor
              Found in src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.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

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

                  public function createVhost(AccountInterface $account, DomainInterface $domain, $docroot, $type)
                  {
                      $doctrineAccount = $this->accountRepository->findOneBy(['name' => $account->getName()]);
              
                      // If the account is unknown
              Severity: Minor
              Found in src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.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

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

                  public function disableVhost(AccountInterface $account, $docroot)
                  {
                      $doctrineAccount = $this->accountRepository->findOneBy(['name' => $account->getName()]);
              
                      // If the account is unknown
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 689..717

              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 222.

              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

                  public function enableVhost(AccountInterface $account, $docroot)
                  {
                      $doctrineAccount = $this->accountRepository->findOneBy(['name' => $account->getName()]);
              
                      // If the account is unknown
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 728..756

              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 222.

              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 6 locations. Consider refactoring.
              Open

                  public function disableAccount($name)
                  {
                      $doctrineAccount = $this->accountRepository->findOneBy(['name' => $name]);
              
                      // If the account is unknown
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 139..159
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 440..460
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 469..489
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 498..518
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 527..547

              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 148.

              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 6 locations. Consider refactoring.
              Open

                  public function disableDomain($name)
                  {
                      $doctrineDomain = $this->domainRepository->findOneBy(['name' => $name]);
              
                      // If the domain is unknown
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 139..159
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 168..188
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 440..460
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 498..518
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 527..547

              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 148.

              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 6 locations. Consider refactoring.
              Open

                  public function disableDomainWildcard($name)
                  {
                      $doctrineDomain = $this->domainRepository->findOneBy(['name' => $name]);
              
                      // If the domain is unknown
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 139..159
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 168..188
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 440..460
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 469..489
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 498..518

              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 148.

              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 6 locations. Consider refactoring.
              Open

                  public function enableAccount($name)
                  {
                      $doctrineAccount = $this->accountRepository->findOneBy(['name' => $name]);
              
                      // If the account is unknown
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 168..188
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 440..460
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 469..489
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 498..518
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 527..547

              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 148.

              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 6 locations. Consider refactoring.
              Open

                  public function enableDomain($name)
                  {
                      $doctrineDomain = $this->domainRepository->findOneBy(['name' => $name]);
              
                      // If the domain is unknown
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 139..159
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 168..188
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 469..489
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 498..518
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 527..547

              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 148.

              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 6 locations. Consider refactoring.
              Open

                  public function enableDomainWildcard($name)
                  {
                      $doctrineDomain = $this->domainRepository->findOneBy(['name' => $name]);
              
                      // If the domain is unknown
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 139..159
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 168..188
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 440..460
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 469..489
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 527..547

              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 148.

              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

                      try {
                          $this->entityManager->persist($doctrineDomain);
                          $this->entityManager->flush();
                          $this->entityManager->refresh($doctrineDomain);
                      } catch (UniqueConstraintViolationException $e) {
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 617..625

              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 91.

              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

                      try {
                          $this->entityManager->persist($doctrineVhost);
                          $this->entityManager->flush();
                          $this->entityManager->refresh($doctrineVhost);
                      } catch (UniqueConstraintViolationException $e) {
              src/Admin/Infrastructure/Strategy/DoctrineStorageAdapterStrategy.php on lines 382..391

              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 91.

              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

              There are no issues that match your filters.

              Category
              Status