brandon14/ebay-sdk-php

View on GitHub

Showing 3,709 of 3,709 total issues

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

    protected static $getters = [
        'item_id' => 'getItemId',
        'title' => 'getTitle',
        'image_url' => 'getImageUrl',
        'category' => 'getCategory',
Severity: Major
Found in src/Buy/FeedBeta/V1/Model/Item.php and 3 other locations - About 2 days to fix
src/Buy/FeedBeta/V1/Model/Item.php on lines 96..184
src/Buy/FeedBeta/V1/Model/Item.php on lines 311..399
src/Buy/FeedBeta/V1/Model/Item.php on lines 406..494

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

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

    protected static $attributeMap = [
        'item_id' => 'itemId',
        'title' => 'title',
        'image_url' => 'imageUrl',
        'category' => 'category',
Severity: Major
Found in src/Buy/FeedBeta/V1/Model/Item.php and 3 other locations - About 2 days to fix
src/Buy/FeedBeta/V1/Model/Item.php on lines 96..184
src/Buy/FeedBeta/V1/Model/Item.php on lines 406..494
src/Buy/FeedBeta/V1/Model/Item.php on lines 501..589

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

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

    protected static $setters = [
        'item_id' => 'setItemId',
        'title' => 'setTitle',
        'image_url' => 'setImageUrl',
        'category' => 'setCategory',
Severity: Major
Found in src/Buy/FeedBeta/V1/Model/Item.php and 3 other locations - About 2 days to fix
src/Buy/FeedBeta/V1/Model/Item.php on lines 96..184
src/Buy/FeedBeta/V1/Model/Item.php on lines 311..399
src/Buy/FeedBeta/V1/Model/Item.php on lines 501..589

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

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

    protected static $openAPITypes = [
        'item_id' => 'string',
        'title' => 'string',
        'image_url' => 'string',
        'category' => 'string',
Severity: Major
Found in src/Buy/FeedBeta/V1/Model/Item.php and 3 other locations - About 2 days to fix
src/Buy/FeedBeta/V1/Model/Item.php on lines 311..399
src/Buy/FeedBeta/V1/Model/Item.php on lines 406..494
src/Buy/FeedBeta/V1/Model/Item.php on lines 501..589

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

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 __construct(array $data = null)
    {
        $this->container['available_quantity'] = $data['available_quantity'] ?? null;
        $this->container['category_id'] = $data['category_id'] ?? null;
        $this->container['charity'] = $data['charity'] ?? null;
Severity: Major
Found in src/Sell/Inventory/V1/Model/EbayOfferDetailsWithId.php and 1 other location - About 2 days to fix
src/Buy/Order/V2/Model/OrderLineItemV2.php on lines 295..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 421.

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 __construct(array $data = null)
    {
        $this->container['authenticity_verification'] = $data['authenticity_verification'] ?? null;
        $this->container['base_unit_price'] = $data['base_unit_price'] ?? null;
        $this->container['fees'] = $data['fees'] ?? null;
Severity: Major
Found in src/Buy/Order/V2/Model/OrderLineItemV2.php and 1 other location - About 2 days to fix
src/Sell/Inventory/V1/Model/EbayOfferDetailsWithId.php on lines 295..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 421.

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

ItemSummary has 102 functions (exceeds 20 allowed). Consider refactoring.
Open

class ItemSummary implements ModelInterface, \ArrayAccess, \JsonSerializable
{
    public const DISCRIMINATOR = null;

    /**
Severity: Major
Found in src/Buy/Browse/V1/Model/ItemSummary.php - About 1 day to fix

    File DestinationApi.php has 810 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    /**
     * This file is part of the trollandtoad/ebay-sdk-php package.
     *
    Severity: Major
    Found in src/Commerce/Notification/V1/Api/DestinationApi.php - About 1 day to fix

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

          public function __construct(array $data = null)
          {
              $this->container['average_item_discount'] = $data['average_item_discount'] ?? null;
              $this->container['average_item_revenue'] = $data['average_item_revenue'] ?? null;
              $this->container['average_order_discount'] = $data['average_order_discount'] ?? null;
      Severity: Major
      Found in src/Sell/Marketing/V1/Model/PromotionReportDetail.php and 1 other location - About 1 day to fix
      src/Commerce/CatalogBeta/V1/Model/Product.php on lines 290..308

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

      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 __construct(array $data = null)
          {
              $this->container['additional_images'] = $data['additional_images'] ?? null;
              $this->container['aspects'] = $data['aspects'] ?? null;
              $this->container['brand'] = $data['brand'] ?? null;
      Severity: Major
      Found in src/Commerce/CatalogBeta/V1/Model/Product.php and 1 other location - About 1 day to fix
      src/Sell/Marketing/V1/Model/PromotionReportDetail.php on lines 290..308

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

      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

          public function findSellerStandardsProfilesRequest()
          {
              $resourcePath = '/seller_standards_profile';
              $formParams = [];
              $queryParams = [];
      Severity: Major
      Found in src/Sell/Analytics/V1/Api/SellerStandardsProfileApi.php and 2 other locations - About 1 day to fix
      src/Buy/Feed/V1/Api/AccessApi.php on lines 303..372
      src/Developer/KeyManagement/V1/Api/SigningKeyApi.php on lines 787..856

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

      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

          public function getAccessRequest()
          {
              $resourcePath = '/access';
              $formParams = [];
              $queryParams = [];
      Severity: Major
      Found in src/Buy/Feed/V1/Api/AccessApi.php and 2 other locations - About 1 day to fix
      src/Developer/KeyManagement/V1/Api/SigningKeyApi.php on lines 787..856
      src/Sell/Analytics/V1/Api/SellerStandardsProfileApi.php on lines 303..372

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

      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

          public function getSigningKeysRequest()
          {
              $resourcePath = '/signing_key';
              $formParams = [];
              $queryParams = [];
      Severity: Major
      Found in src/Developer/KeyManagement/V1/Api/SigningKeyApi.php and 2 other locations - About 1 day to fix
      src/Buy/Feed/V1/Api/AccessApi.php on lines 303..372
      src/Sell/Analytics/V1/Api/SellerStandardsProfileApi.php on lines 303..372

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

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

          protected static $setters = [
              'additional_images' => 'setAdditionalImages',
              'addon_services' => 'setAddonServices',
              'adult_only' => 'setAdultOnly',
              'age_group' => 'setAgeGroup',
      Severity: Major
      Found in src/Buy/Browse/V1/Model/Item.php and 3 other locations - About 1 day to fix
      src/Buy/Browse/V1/Model/Item.php on lines 96..172
      src/Buy/Browse/V1/Model/Item.php on lines 287..363
      src/Buy/Browse/V1/Model/Item.php on lines 453..529

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

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

          protected static $openAPITypes = [
              'additional_images' => '\TNT\Ebay\Buy\Browse\V1\Model\Image[]',
              'addon_services' => '\TNT\Ebay\Buy\Browse\V1\Model\AddonService[]',
              'adult_only' => 'bool',
              'age_group' => 'string',
      Severity: Major
      Found in src/Buy/Browse/V1/Model/Item.php and 3 other locations - About 1 day to fix
      src/Buy/Browse/V1/Model/Item.php on lines 287..363
      src/Buy/Browse/V1/Model/Item.php on lines 370..446
      src/Buy/Browse/V1/Model/Item.php on lines 453..529

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

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

          protected static $attributeMap = [
              'additional_images' => 'additionalImages',
              'addon_services' => 'addonServices',
              'adult_only' => 'adultOnly',
              'age_group' => 'ageGroup',
      Severity: Major
      Found in src/Buy/Browse/V1/Model/Item.php and 3 other locations - About 1 day to fix
      src/Buy/Browse/V1/Model/Item.php on lines 96..172
      src/Buy/Browse/V1/Model/Item.php on lines 370..446
      src/Buy/Browse/V1/Model/Item.php on lines 453..529

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

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

          protected static $getters = [
              'additional_images' => 'getAdditionalImages',
              'addon_services' => 'getAddonServices',
              'adult_only' => 'getAdultOnly',
              'age_group' => 'getAgeGroup',
      Severity: Major
      Found in src/Buy/Browse/V1/Model/Item.php and 3 other locations - About 1 day to fix
      src/Buy/Browse/V1/Model/Item.php on lines 96..172
      src/Buy/Browse/V1/Model/Item.php on lines 287..363
      src/Buy/Browse/V1/Model/Item.php on lines 370..446

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

      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 ItemSummary.php has 738 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      <?php
      
      /**
       * This file is part of the trollandtoad/ebay-sdk-php package.
       *
      Severity: Major
      Found in src/Buy/Browse/V1/Model/ItemSummary.php - About 1 day to fix

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

            public function updateAdGroupWithHttpInfo($ad_group_id, $campaign_id, $update_ad_group_request)
            {
                $request = $this->updateAdGroupRequest($ad_group_id, $campaign_id, $update_ad_group_request);
        
                try {
        Severity: Major
        Found in src/Sell/Marketing/V1/Api/AdGroupApi.php and 4 other locations - About 1 day to fix
        src/Sell/Account/V1/Api/CustomPolicyApi.php on lines 966..996
        src/Sell/Account/V1/Api/SalesTaxApi.php on lines 181..211
        src/Sell/Marketing/V1/Api/AdApi.php on lines 4184..4214
        src/Sell/Marketing/V1/Api/KeywordApi.php on lines 1546..1576

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

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

            public function updateKeywordWithHttpInfo($campaign_id, $keyword_id, $update_keyword_request)
            {
                $request = $this->updateKeywordRequest($campaign_id, $keyword_id, $update_keyword_request);
        
                try {
        Severity: Major
        Found in src/Sell/Marketing/V1/Api/KeywordApi.php and 4 other locations - About 1 day to fix
        src/Sell/Account/V1/Api/CustomPolicyApi.php on lines 966..996
        src/Sell/Account/V1/Api/SalesTaxApi.php on lines 181..211
        src/Sell/Marketing/V1/Api/AdApi.php on lines 4184..4214
        src/Sell/Marketing/V1/Api/AdGroupApi.php on lines 1563..1593

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

        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