mundipagg/magento2

View on GitHub

Showing 453 of 453 total issues

File Plan.php has 469 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
Severity: Minor
Found in Ui/DataProvider/Product/Form/Modifier/Plan.php - About 7 hrs to fix

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

        public function updateConfigProductRecurrencePaymment($setup)
        {
            $eavSetup = $this->eavSetupFactory->create(['setup' => $setup]);
    
            $eavSetup->removeAttribute(
    Severity: Major
    Found in Setup/UpgradeData.php and 1 other location - About 7 hrs to fix
    Setup/Recurrence.php on lines 254..299

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

    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

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

        public function updateConfigProductRecurrencePaymment($setup)
        {
    
            $eavSetup = $this->eavSetupFactory->create(['setup' => $setup]);
    
    
    Severity: Major
    Found in Setup/Recurrence.php and 1 other location - About 7 hrs to fix
    Setup/UpgradeData.php on lines 410..453

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

    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

                $configTable = $installer->getConnection()
                    ->newTable($tableName)
                    ->addColumn(
                        'id',
                        Table::TYPE_INTEGER,
    Severity: Major
    Found in Setup/InstallSchema.php and 1 other location - About 6 hrs to fix
    Setup/InstallSchema.php on lines 1111..1173

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

    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

                $configTable = $installer->getConnection()
                    ->newTable($tableName)
                    ->addColumn(
                        'id',
                        Table::TYPE_INTEGER,
    Severity: Major
    Found in Setup/InstallSchema.php and 1 other location - About 6 hrs to fix
    Setup/InstallSchema.php on lines 1290..1349

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

    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

    Method installRecurrenceCharge has 173 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function installRecurrenceCharge(SchemaSetupInterface $installer)
        {
            $tableName = $installer->getTable(
                'mundipagg_module_core_recurrence_charge'
            );
    Severity: Major
    Found in Setup/InstallSchema.php - About 6 hrs to fix

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

                  $table = $installer->getConnection()
                      ->newTable($tableName)
                      ->addColumn(
                          'id',
                          Table::TYPE_INTEGER,
      Severity: Major
      Found in Setup/UpgradeSchema.php and 1 other location - About 6 hrs to fix
      Setup/UpgradeData.php on lines 99..147

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

      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

                  $table = $installer->getConnection()
                      ->newTable($tableName)
                      ->addColumn(
                          'id',
                          Table::TYPE_INTEGER,
      Severity: Major
      Found in Setup/UpgradeData.php and 1 other location - About 6 hrs to fix
      Setup/UpgradeSchema.php on lines 99..147

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

      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

      File Magento2CoreSetup.php has 448 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      <?php
      
      namespace MundiPagg\MundiPagg\Concrete;
      
      use Magento\Framework\App\Config as Magento2StoreConfig;
      Severity: Minor
      Found in Concrete/Magento2CoreSetup.php - About 6 hrs to fix

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

            var creditCardForm = {
                'containerSelector' : containerSelector,
                "creditCardNumber" : jQuery(containerSelector + " .cc_number"),
                "creditCardHolderName" : jQuery(containerSelector + " .cc_owner"),
                "creditCardExpMonth" : jQuery(containerSelector + " .cc_exp_month"),
        Severity: Major
        Found in view/frontend/web/js/core/checkout/PlatformFormBiding.js and 1 other location - About 6 hrs to fix
        view/frontend/web/js/core/checkout/PlatformFormBiding.js on lines 402..416

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

        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

            var cardsElements = {
                'containerSelector' : containerCreditCardSelector,
                "creditCardNumber" : jQuery(containerCreditCardSelector + " .cc_number"),
                "creditCardHolderName" : jQuery(containerCreditCardSelector + " .cc_owner"),
                "creditCardExpMonth" : jQuery(containerCreditCardSelector + " .cc_exp_month"),
        Severity: Major
        Found in view/frontend/web/js/core/checkout/PlatformFormBiding.js and 1 other location - About 6 hrs to fix
        view/frontend/web/js/core/checkout/PlatformFormBiding.js on lines 122..136

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

        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

        Identical blocks of code found in 3 locations. Consider refactoring.
        Open

            protected function setMultiBuyer($info, $additionalData)
            {
                $info->setAdditionalInformation('cc_buyer_checkbox', $additionalData->getCcBuyerCheckbox());
                if ($additionalData->getCcBuyerCheckbox()) {
                    $info->setAdditionalInformation('cc_buyer_name', $additionalData->getCcBuyerName());
        Severity: Major
        Found in Observer/DebitDataAssignObserver.php and 2 other locations - About 6 hrs to fix
        Observer/CreditCardDataAssignObserver.php on lines 105..122
        Observer/VoucherDataAssignObserver.php on lines 100..117

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

        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

        Identical blocks of code found in 3 locations. Consider refactoring.
        Open

            protected function setMultiBuyer($info, $additionalData)
            {
                $info->setAdditionalInformation('cc_buyer_checkbox', $additionalData->getCcBuyerCheckbox());
                if ($additionalData->getCcBuyerCheckbox()) {
                    $info->setAdditionalInformation('cc_buyer_name', $additionalData->getCcBuyerName());
        Severity: Major
        Found in Observer/VoucherDataAssignObserver.php and 2 other locations - About 6 hrs to fix
        Observer/CreditCardDataAssignObserver.php on lines 105..122
        Observer/DebitDataAssignObserver.php on lines 99..116

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

        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

        Identical blocks of code found in 3 locations. Consider refactoring.
        Open

            protected function setMultiBuyer($info, $additionalData)
            {
                $info->setAdditionalInformation('cc_buyer_checkbox', $additionalData->getCcBuyerCheckbox());
                if ($additionalData->getCcBuyerCheckbox()) {
                    $info->setAdditionalInformation('cc_buyer_name', $additionalData->getCcBuyerName());
        Severity: Major
        Found in Observer/CreditCardDataAssignObserver.php and 2 other locations - About 6 hrs to fix
        Observer/DebitDataAssignObserver.php on lines 99..116
        Observer/VoucherDataAssignObserver.php on lines 100..117

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

        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

        AbstractRequestDataProvider has 45 functions (exceeds 20 allowed). Consider refactoring.
        Open

        abstract class AbstractRequestDataProvider
        {
            protected $orderAdapter;
            protected $payment;
        
        

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

              var debitForm = {
                  'containerSelector' : containerSelector,
                  "creditCardNumber" : jQuery(containerSelector + " .cc_number"),
                  "creditCardHolderName" : jQuery(containerSelector + " .cc_owner"),
                  "creditCardExpMonth" : jQuery(containerSelector + " .cc_exp_month"),
          Severity: Major
          Found in view/frontend/web/js/core/checkout/PlatformFormBiding.js and 1 other location - About 6 hrs to fix
          view/frontend/web/js/core/checkout/PlatformFormBiding.js on lines 176..189

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

          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

              var voucherForm = {
                  'containerSelector' : containerSelector,
                  "creditCardNumber" : jQuery(containerSelector + " .cc_number"),
                  "creditCardHolderName" : jQuery(containerSelector + " .cc_owner"),
                  "creditCardExpMonth" : jQuery(containerSelector + " .cc_exp_month"),
          Severity: Major
          Found in view/frontend/web/js/core/checkout/PlatformFormBiding.js and 1 other location - About 6 hrs to fix
          view/frontend/web/js/core/checkout/PlatformFormBiding.js on lines 229..242

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

          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 getList(
                  \Magento\Framework\Api\SearchCriteriaInterface $criteria
              ) {
                  $collection = $this->chargesCollectionFactory->create();
                  foreach ($criteria->getFilterGroups() as $filterGroup) {
          Severity: Major
          Found in Model/ChargesRepository.php and 1 other location - About 5 hrs to fix
          Model/CardsRepository.php on lines 135..164

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

          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 getList(
                  \Magento\Framework\Api\SearchCriteriaInterface $criteria
              ) {
                  $collection = $this->cardsCollectionFactory->create();
                  foreach ($criteria->getFilterGroups() as $filterGroup) {
          Severity: Major
          Found in Model/CardsRepository.php and 1 other location - About 5 hrs to fix
          Model/ChargesRepository.php on lines 102..131

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

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

          CreditCardModel.prototype.getData = function () {
              saveThiscard = 0;
              var formObject = this.formObject;
          
              if (formObject.saveThisCard.prop( "checked" )) {
          Severity: Major
          Found in view/frontend/web/js/core/models/CreditCardModel.js and 2 other locations - About 5 hrs to fix
          view/frontend/web/js/core/models/DebitModel.js on lines 61..80
          view/frontend/web/js/core/models/VoucherModel.js on lines 70..89

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

          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

          Severity
          Category
          Status
          Source
          Language