brandon14/ebay-sdk-php

View on GitHub
src/Sell/Inventory/V1/Api/LocationApi.php

Summary

Maintainability
F
3 wks
Test Coverage

File LocationApi.php has 1096 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/Sell/Inventory/V1/Api/LocationApi.php - About 2 days to fix

    LocationApi has 40 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class LocationApi
    {
        /**
         * @var ClientInterface
         */
    Severity: Minor
    Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 5 hrs to fix

      Function createInventoryLocationRequest has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
      Open

          public function createInventoryLocationRequest($merchant_location_key, $inventory_location_full)
          {
              // Verify the required parameter 'merchant_location_key' is set.
              if ($merchant_location_key === null || (\is_array($merchant_location_key) && count($merchant_location_key) === 0)) {
                  throw new \InvalidArgumentException('Missing the required parameter $merchant_location_key when calling createInventoryLocation');
      Severity: Minor
      Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 3 hrs to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function updateInventoryLocationRequest has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
      Open

          public function updateInventoryLocationRequest($merchant_location_key, $inventory_location)
          {
              // Verify the required parameter 'merchant_location_key' is set.
              if ($merchant_location_key === null || (\is_array($merchant_location_key) && count($merchant_location_key) === 0)) {
                  throw new \InvalidArgumentException('Missing the required parameter $merchant_location_key when calling updateInventoryLocation');
      Severity: Minor
      Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 3 hrs to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method createInventoryLocationRequest has 73 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function createInventoryLocationRequest($merchant_location_key, $inventory_location_full)
          {
              // Verify the required parameter 'merchant_location_key' is set.
              if ($merchant_location_key === null || (\is_array($merchant_location_key) && count($merchant_location_key) === 0)) {
                  throw new \InvalidArgumentException('Missing the required parameter $merchant_location_key when calling createInventoryLocation');
      Severity: Major
      Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 2 hrs to fix

        Method updateInventoryLocationRequest has 73 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function updateInventoryLocationRequest($merchant_location_key, $inventory_location)
            {
                // Verify the required parameter 'merchant_location_key' is set.
                if ($merchant_location_key === null || (\is_array($merchant_location_key) && count($merchant_location_key) === 0)) {
                    throw new \InvalidArgumentException('Missing the required parameter $merchant_location_key when calling updateInventoryLocation');
        Severity: Major
        Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 2 hrs to fix

          Function deleteInventoryLocationRequest has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
          Open

              public function deleteInventoryLocationRequest($merchant_location_key)
              {
                  // Verify the required parameter 'merchant_location_key' is set.
                  if ($merchant_location_key === null || (\is_array($merchant_location_key) && count($merchant_location_key) === 0)) {
                      throw new \InvalidArgumentException('Missing the required parameter $merchant_location_key when calling deleteInventoryLocation');
          Severity: Minor
          Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 2 hrs to fix

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Function disableInventoryLocationRequest has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
          Open

              public function disableInventoryLocationRequest($merchant_location_key)
              {
                  // Verify the required parameter 'merchant_location_key' is set.
                  if ($merchant_location_key === null || (\is_array($merchant_location_key) && count($merchant_location_key) === 0)) {
                      throw new \InvalidArgumentException('Missing the required parameter $merchant_location_key when calling disableInventoryLocation');
          Severity: Minor
          Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 2 hrs to fix

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Function enableInventoryLocationRequest has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
          Open

              public function enableInventoryLocationRequest($merchant_location_key)
              {
                  // Verify the required parameter 'merchant_location_key' is set.
                  if ($merchant_location_key === null || (\is_array($merchant_location_key) && count($merchant_location_key) === 0)) {
                      throw new \InvalidArgumentException('Missing the required parameter $merchant_location_key when calling enableInventoryLocation');
          Severity: Minor
          Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 2 hrs to fix

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Function getInventoryLocationRequest has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
          Open

              public function getInventoryLocationRequest($merchant_location_key)
              {
                  // Verify the required parameter 'merchant_location_key' is set.
                  if ($merchant_location_key === null || (\is_array($merchant_location_key) && count($merchant_location_key) === 0)) {
                      throw new \InvalidArgumentException('Missing the required parameter $merchant_location_key when calling getInventoryLocation');
          Severity: Minor
          Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 2 hrs to fix

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Method getInventoryLocationsRequest has 68 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function getInventoryLocationsRequest($limit = null, $offset = null)
              {
                  $resourcePath = '/location';
                  $formParams = [];
                  $queryParams = [];
          Severity: Major
          Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 2 hrs to fix

            Method disableInventoryLocationRequest has 64 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function disableInventoryLocationRequest($merchant_location_key)
                {
                    // Verify the required parameter 'merchant_location_key' is set.
                    if ($merchant_location_key === null || (\is_array($merchant_location_key) && count($merchant_location_key) === 0)) {
                        throw new \InvalidArgumentException('Missing the required parameter $merchant_location_key when calling disableInventoryLocation');
            Severity: Major
            Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 2 hrs to fix

              Method enableInventoryLocationRequest has 64 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function enableInventoryLocationRequest($merchant_location_key)
                  {
                      // Verify the required parameter 'merchant_location_key' is set.
                      if ($merchant_location_key === null || (\is_array($merchant_location_key) && count($merchant_location_key) === 0)) {
                          throw new \InvalidArgumentException('Missing the required parameter $merchant_location_key when calling enableInventoryLocation');
              Severity: Major
              Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 2 hrs to fix

                Method getInventoryLocationRequest has 64 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public function getInventoryLocationRequest($merchant_location_key)
                    {
                        // Verify the required parameter 'merchant_location_key' is set.
                        if ($merchant_location_key === null || (\is_array($merchant_location_key) && count($merchant_location_key) === 0)) {
                            throw new \InvalidArgumentException('Missing the required parameter $merchant_location_key when calling getInventoryLocation');
                Severity: Major
                Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 2 hrs to fix

                  Method deleteInventoryLocationRequest has 64 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      public function deleteInventoryLocationRequest($merchant_location_key)
                      {
                          // Verify the required parameter 'merchant_location_key' is set.
                          if ($merchant_location_key === null || (\is_array($merchant_location_key) && count($merchant_location_key) === 0)) {
                              throw new \InvalidArgumentException('Missing the required parameter $merchant_location_key when calling deleteInventoryLocation');
                  Severity: Major
                  Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 2 hrs to fix

                    Method disableInventoryLocationWithHttpInfo has 53 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        public function disableInventoryLocationWithHttpInfo($merchant_location_key)
                        {
                            $request = $this->disableInventoryLocationRequest($merchant_location_key);
                    
                            try {
                    Severity: Major
                    Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 2 hrs to fix

                      Method enableInventoryLocationWithHttpInfo has 53 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          public function enableInventoryLocationWithHttpInfo($merchant_location_key)
                          {
                              $request = $this->enableInventoryLocationRequest($merchant_location_key);
                      
                              try {
                      Severity: Major
                      Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 2 hrs to fix

                        Method getInventoryLocationsWithHttpInfo has 53 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            public function getInventoryLocationsWithHttpInfo($limit = null, $offset = null)
                            {
                                $request = $this->getInventoryLocationsRequest($limit, $offset);
                        
                                try {
                        Severity: Major
                        Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 2 hrs to fix

                          Method getInventoryLocationWithHttpInfo has 53 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              public function getInventoryLocationWithHttpInfo($merchant_location_key)
                              {
                                  $request = $this->getInventoryLocationRequest($merchant_location_key);
                          
                                  try {
                          Severity: Major
                          Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 2 hrs to fix

                            Function getInventoryLocationsRequest has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
                            Open

                                public function getInventoryLocationsRequest($limit = null, $offset = null)
                                {
                                    $resourcePath = '/location';
                                    $formParams = [];
                                    $queryParams = [];
                            Severity: Minor
                            Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 2 hrs to fix

                            Cognitive Complexity

                            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                            A method's cognitive complexity is based on a few simple rules:

                            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                            • Code is considered more complex for each "break in the linear flow of the code"
                            • Code is considered more complex when "flow breaking structures are nested"

                            Further reading

                            Function enableInventoryLocationWithHttpInfo has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                            Open

                                public function enableInventoryLocationWithHttpInfo($merchant_location_key)
                                {
                                    $request = $this->enableInventoryLocationRequest($merchant_location_key);
                            
                                    try {
                            Severity: Minor
                            Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 1 hr to fix

                            Cognitive Complexity

                            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                            A method's cognitive complexity is based on a few simple rules:

                            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                            • Code is considered more complex for each "break in the linear flow of the code"
                            • Code is considered more complex when "flow breaking structures are nested"

                            Further reading

                            Function disableInventoryLocationWithHttpInfo has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                            Open

                                public function disableInventoryLocationWithHttpInfo($merchant_location_key)
                                {
                                    $request = $this->disableInventoryLocationRequest($merchant_location_key);
                            
                                    try {
                            Severity: Minor
                            Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 1 hr to fix

                            Cognitive Complexity

                            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                            A method's cognitive complexity is based on a few simple rules:

                            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                            • Code is considered more complex for each "break in the linear flow of the code"
                            • Code is considered more complex when "flow breaking structures are nested"

                            Further reading

                            Function getInventoryLocationWithHttpInfo has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                            Open

                                public function getInventoryLocationWithHttpInfo($merchant_location_key)
                                {
                                    $request = $this->getInventoryLocationRequest($merchant_location_key);
                            
                                    try {
                            Severity: Minor
                            Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 1 hr to fix

                            Cognitive Complexity

                            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                            A method's cognitive complexity is based on a few simple rules:

                            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                            • Code is considered more complex for each "break in the linear flow of the code"
                            • Code is considered more complex when "flow breaking structures are nested"

                            Further reading

                            Function getInventoryLocationsWithHttpInfo has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                            Open

                                public function getInventoryLocationsWithHttpInfo($limit = null, $offset = null)
                                {
                                    $request = $this->getInventoryLocationsRequest($limit, $offset);
                            
                                    try {
                            Severity: Minor
                            Found in src/Sell/Inventory/V1/Api/LocationApi.php - About 1 hr to fix

                            Cognitive Complexity

                            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                            A method's cognitive complexity is based on a few simple rules:

                            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                            • Code is considered more complex for each "break in the linear flow of the code"
                            • Code is considered more complex when "flow breaking structures are nested"

                            Further reading

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

                                public function deleteInventoryLocationWithHttpInfo($merchant_location_key)
                                {
                                    $request = $this->deleteInventoryLocationRequest($merchant_location_key);
                            
                                    try {
                            Severity: Minor
                            Found in src/Sell/Inventory/V1/Api/LocationApi.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 updateInventoryLocationWithHttpInfo has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                            Open

                                public function updateInventoryLocationWithHttpInfo($merchant_location_key, $inventory_location)
                                {
                                    $request = $this->updateInventoryLocationRequest($merchant_location_key, $inventory_location);
                            
                                    try {
                            Severity: Minor
                            Found in src/Sell/Inventory/V1/Api/LocationApi.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 createInventoryLocationWithHttpInfo has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                            Open

                                public function createInventoryLocationWithHttpInfo($merchant_location_key, $inventory_location_full)
                                {
                                    $request = $this->createInventoryLocationRequest($merchant_location_key, $inventory_location_full);
                            
                                    try {
                            Severity: Minor
                            Found in src/Sell/Inventory/V1/Api/LocationApi.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

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

                                public function updateInventoryLocationRequest($merchant_location_key, $inventory_location)
                                {
                                    // Verify the required parameter 'merchant_location_key' is set.
                                    if ($merchant_location_key === null || (\is_array($merchant_location_key) && count($merchant_location_key) === 0)) {
                                        throw new \InvalidArgumentException('Missing the required parameter $merchant_location_key when calling updateInventoryLocation');
                            Severity: Major
                            Found in src/Sell/Inventory/V1/Api/LocationApi.php and 2 other locations - About 3 days to fix
                            src/Sell/Feed/V1/Api/ScheduleApi.php on lines 1995..2088
                            src/Sell/Inventory/V1/Api/LocationApi.php on lines 271..364

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

                            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 createInventoryLocationRequest($merchant_location_key, $inventory_location_full)
                                {
                                    // Verify the required parameter 'merchant_location_key' is set.
                                    if ($merchant_location_key === null || (\is_array($merchant_location_key) && count($merchant_location_key) === 0)) {
                                        throw new \InvalidArgumentException('Missing the required parameter $merchant_location_key when calling createInventoryLocation');
                            Severity: Major
                            Found in src/Sell/Inventory/V1/Api/LocationApi.php and 2 other locations - About 3 days to fix
                            src/Sell/Feed/V1/Api/ScheduleApi.php on lines 1995..2088
                            src/Sell/Inventory/V1/Api/LocationApi.php on lines 1676..1769

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

                            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 getInventoryLocationsRequest($limit = null, $offset = null)
                                {
                                    $resourcePath = '/location';
                                    $formParams = [];
                                    $queryParams = [];
                            Severity: Major
                            Found in src/Sell/Inventory/V1/Api/LocationApi.php and 1 other location - About 2 days to fix
                            src/Sell/Inventory/V1/Api/InventoryItemApi.php on lines 1787..1873

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

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

                                public function updateInventoryLocationWithHttpInfo($merchant_location_key, $inventory_location)
                                {
                                    $request = $this->updateInventoryLocationRequest($merchant_location_key, $inventory_location);
                            
                                    try {
                            Severity: Major
                            Found in src/Sell/Inventory/V1/Api/LocationApi.php and 11 other locations - About 1 day to fix
                            src/Sell/Account/V1/Api/LocationApi.php on lines 185..215
                            src/Sell/Account/V1/Api/LocationApi.php on lines 1746..1776
                            src/Sell/Account/V1/Api/SalesTaxApi.php on lines 414..444
                            src/Sell/Feed/V1/Api/CustomerServiceMetricTaskApi.php on lines 179..209
                            src/Sell/Feed/V1/Api/ScheduleApi.php on lines 1903..1933
                            src/Sell/Inventory/V1/Api/LocationApi.php on lines 179..209
                            src/Sell/Marketing/V1/Api/AdApi.php on lines 2829..2859
                            src/Sell/Marketing/V1/Api/CampaignApi.php on lines 2887..2917
                            src/Sell/Marketing/V1/Api/CampaignApi.php on lines 3105..3135
                            src/Sell/Marketing/V1/Api/CampaignApi.php on lines 3323..3353
                            src/Sell/Marketing/V1/Api/NegativeKeywordApi.php on lines 1467..1497

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

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

                                public function createInventoryLocationWithHttpInfo($merchant_location_key, $inventory_location_full)
                                {
                                    $request = $this->createInventoryLocationRequest($merchant_location_key, $inventory_location_full);
                            
                                    try {
                            Severity: Major
                            Found in src/Sell/Inventory/V1/Api/LocationApi.php and 11 other locations - About 1 day to fix
                            src/Sell/Account/V1/Api/LocationApi.php on lines 185..215
                            src/Sell/Account/V1/Api/LocationApi.php on lines 1746..1776
                            src/Sell/Account/V1/Api/SalesTaxApi.php on lines 414..444
                            src/Sell/Feed/V1/Api/CustomerServiceMetricTaskApi.php on lines 179..209
                            src/Sell/Feed/V1/Api/ScheduleApi.php on lines 1903..1933
                            src/Sell/Inventory/V1/Api/LocationApi.php on lines 1584..1614
                            src/Sell/Marketing/V1/Api/AdApi.php on lines 2829..2859
                            src/Sell/Marketing/V1/Api/CampaignApi.php on lines 2887..2917
                            src/Sell/Marketing/V1/Api/CampaignApi.php on lines 3105..3135
                            src/Sell/Marketing/V1/Api/CampaignApi.php on lines 3323..3353
                            src/Sell/Marketing/V1/Api/NegativeKeywordApi.php on lines 1467..1497

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

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

                                public function updateInventoryLocationAsyncWithHttpInfo($merchant_location_key, $inventory_location)
                                {
                                    $returnType = '';
                                    $request = $this->updateInventoryLocationRequest($merchant_location_key, $inventory_location);
                            
                            
                            Severity: Major
                            Found in src/Sell/Inventory/V1/Api/LocationApi.php and 11 other locations - About 4 hrs to fix
                            src/Sell/Account/V1/Api/LocationApi.php on lines 253..271
                            src/Sell/Account/V1/Api/LocationApi.php on lines 1814..1832
                            src/Sell/Account/V1/Api/SalesTaxApi.php on lines 476..494
                            src/Sell/Feed/V1/Api/CustomerServiceMetricTaskApi.php on lines 241..259
                            src/Sell/Feed/V1/Api/ScheduleApi.php on lines 1965..1983
                            src/Sell/Inventory/V1/Api/LocationApi.php on lines 241..259
                            src/Sell/Marketing/V1/Api/AdApi.php on lines 2891..2909
                            src/Sell/Marketing/V1/Api/CampaignApi.php on lines 2949..2967
                            src/Sell/Marketing/V1/Api/CampaignApi.php on lines 3167..3185
                            src/Sell/Marketing/V1/Api/CampaignApi.php on lines 3385..3403
                            src/Sell/Marketing/V1/Api/NegativeKeywordApi.php on lines 1529..1547

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

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

                                public function createInventoryLocationAsyncWithHttpInfo($merchant_location_key, $inventory_location_full)
                                {
                                    $returnType = '';
                                    $request = $this->createInventoryLocationRequest($merchant_location_key, $inventory_location_full);
                            
                            
                            Severity: Major
                            Found in src/Sell/Inventory/V1/Api/LocationApi.php and 11 other locations - About 4 hrs to fix
                            src/Sell/Account/V1/Api/LocationApi.php on lines 253..271
                            src/Sell/Account/V1/Api/LocationApi.php on lines 1814..1832
                            src/Sell/Account/V1/Api/SalesTaxApi.php on lines 476..494
                            src/Sell/Feed/V1/Api/CustomerServiceMetricTaskApi.php on lines 241..259
                            src/Sell/Feed/V1/Api/ScheduleApi.php on lines 1965..1983
                            src/Sell/Inventory/V1/Api/LocationApi.php on lines 1646..1664
                            src/Sell/Marketing/V1/Api/AdApi.php on lines 2891..2909
                            src/Sell/Marketing/V1/Api/CampaignApi.php on lines 2949..2967
                            src/Sell/Marketing/V1/Api/CampaignApi.php on lines 3167..3185
                            src/Sell/Marketing/V1/Api/CampaignApi.php on lines 3385..3403
                            src/Sell/Marketing/V1/Api/NegativeKeywordApi.php on lines 1529..1547

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

                            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