gabrielbull/php-ups-api

View on GitHub

Showing 176 of 176 total issues

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

    public function toNode(DOMDocument $document = null)
    {
        if (null === $document) {
            $document = new DOMDocument();
        }
Severity: Major
Found in src/Entity/PackagingType.php and 8 other locations - About 50 mins to fix
src/Entity/AccessPointCOD.php on lines 46..58
src/Entity/GeoCode.php on lines 13..25
src/Entity/InsuredValue.php on lines 43..54
src/Entity/Locale.php on lines 26..38
src/Entity/Pickup.php on lines 44..55
src/Entity/PickupType.php on lines 38..49
src/Entity/Service.php on lines 152..163
src/Entity/Tradeability/FreightCharges.php on lines 28..39

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

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 __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

    public function __construct($accessKey = null, $userId = null, $password = null, $useIntegration = false, RequestInterface $request = null, LoggerInterface $logger = null)
Severity: Minor
Found in src/QuantumView.php - About 45 mins to fix

    Method __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

            $accessKey = null,
            $userId = null,
            $password = null,
            $useIntegration = false,
            RequestInterface $request = null,
    Severity: Minor
    Found in src/AddressValidation.php - About 45 mins to fix

      Method __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
      Open

              $accessKey = null,
              $userId = null,
              $password = null,
              $useIntegration = false,
              RequestInterface $request = null,
      Severity: Minor
      Found in src/SimpleAddressValidation.php - About 45 mins to fix

        Method __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
        Open

                $accessKey = null,
                $userId = null,
                $password = null,
                $useIntegration = false,
                RequestInterface $request = null,
        Severity: Minor
        Found in src/Tradeability.php - About 45 mins to fix

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

              public static function addPackages(stdClass $shipment, DOMNode $node)
              {
                  foreach ($shipment->Package as $package) {
                      $packageNode = $node->appendChild($node->ownerDocument->createElement('Package'));
          
          
          Severity: Minor
          Found in src/Utilities.php - About 45 mins to fix

          Cognitive Complexity

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

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

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

          Further reading

          Method __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              public function __construct($accessKey = null, $userId = null, $password = null, $useIntegration = false, RequestInterface $request = null, LoggerInterface $logger = null)
          Severity: Minor
          Found in src/TimeInTransit.php - About 45 mins to fix

            Method __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                public function __construct($accessKey = null, $userId = null, $password = null, $useIntegration = false, RequestInterface $request = null, LoggerInterface $logger = null)
            Severity: Minor
            Found in src/Locator.php - About 45 mins to fix

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

                  public function toNode(DOMDocument $document = null)
                  {
                      if (null === $document) {
                          $document = new DOMDocument();
                      }
              Severity: Minor
              Found in src/Entity/AddressArtifactFormat.php - About 45 mins to fix

              Cognitive Complexity

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

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

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

              Further reading

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

                  private function createRequest()
                  {
                      $xml = new DOMDocument();
                      $xml->formatOutput = true;
              
              
              Severity: Minor
              Found in src/QuantumView.php - About 45 mins to fix

              Cognitive Complexity

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

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

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

              Further reading

              Method __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  public function __construct($accessKey = null, $userId = null, $password = null, $useIntegration = false, RequestInterface $request = null, LoggerInterface $logger = null)
              Severity: Minor
              Found in src/Shipping.php - About 45 mins to fix

                Avoid deeply nested control flow statements.
                Open

                                        if ($rec->getBillShipper()->getCreditCard()->getAddress()) {
                                            $ccNode->appendChild($rec->getBillShipper()->getCreditCard()->getAddress()->toNode($xml));
                                        }
                Severity: Major
                Found in src/Shipping.php - About 45 mins to fix

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

                      public function toNode(DOMDocument $document = null)
                      {
                          if (null === $document) {
                              $document = new DOMDocument();
                          }
                  Severity: Minor
                  Found in src/Entity/EmailMessage.php - About 45 mins to fix

                  Cognitive Complexity

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

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

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

                  Further reading

                  Avoid deeply nested control flow statements.
                  Open

                                          if ($rec->getBillShipper()->getCreditCard()->getSecurityCode()) {
                                              $ccNode->appendChild($xml->createElement('SecurityCode', $rec->getBillShipper()->getCreditCard()->getSecurityCode()));
                                          }
                  Severity: Major
                  Found in src/Shipping.php - About 45 mins to fix

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

                        public function toNode(DOMDocument $document = null)
                        {
                            if (null === $document) {
                                $document = new DOMDocument();
                            }
                    Severity: Minor
                    Found in src/Entity/Product.php - About 45 mins to fix

                    Cognitive Complexity

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

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

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

                    Further reading

                    Method __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                        public function __construct($accessKey = null, $userId = null, $password = null, $useIntegration = false, RequestInterface $request = null, LoggerInterface $logger = null)
                    Severity: Minor
                    Found in src/Tracking.php - About 45 mins to fix

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

                          public function toNode(DOMDocument $document = null)
                          {
                              if (null === $document) {
                                  $document = new DOMDocument();
                              }
                      Severity: Minor
                      Found in src/Entity/PackageWeight.php and 1 other location - About 40 mins to fix
                      src/Entity/ShipmentWeight.php on lines 33..44

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

                      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 toNode(DOMDocument $document = null)
                          {
                              if (null === $document) {
                                  $document = new DOMDocument();
                              }
                      Severity: Minor
                      Found in src/Entity/ShipmentWeight.php and 1 other location - About 40 mins to fix
                      src/Entity/PackageWeight.php on lines 42..53

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

                      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 getSubscription has 5 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                          public function getSubscription($name = null, $beginDateTime = null, $endDateTime = null, $fileName = null, $bookmark = null)
                      Severity: Minor
                      Found in src/QuantumView.php - About 35 mins to fix

                        Method request has 5 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                            public function request($access, $request, $endpointurl, $operation = null, $wsdl = null)
                        Severity: Minor
                        Found in src/SoapRequest.php - About 35 mins to fix
                          Severity
                          Category
                          Status
                          Source
                          Language