gabrielbull/php-ups-api

View on GitHub
src/Entity/InternationalForms.php

Summary

Maintainability
D
1 day
Test Coverage

InternationalForms has 33 functions (exceeds 20 allowed). Consider refactoring.
Open

class InternationalForms implements NodeInterface
{
    /**
     * @var array
     */
Severity: Minor
Found in src/Entity/InternationalForms.php - About 4 hrs to fix

    File InternationalForms.php has 306 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    namespace Ups\Entity;
    
    use DateTime;
    Severity: Minor
    Found in src/Entity/InternationalForms.php - About 3 hrs to fix

      Function __construct has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
      Open

          public function __construct($attributes = null)
          {
              if (null !== $attributes) {
                  if (isset($attributes->FormType)) {
                      $this->setType($attributes->FormType);
      Severity: Minor
      Found in src/Entity/InternationalForms.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 toNode has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

          public function toNode(DOMDocument $document = null)
          {
              if (null === $document) {
                  $document = new DOMDocument();
              }
      Severity: Minor
      Found in src/Entity/InternationalForms.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

      Method toNode has 47 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

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

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

            public function __construct($attributes = null)
            {
                if (null !== $attributes) {
                    if (isset($attributes->FormType)) {
                        $this->setType($attributes->FormType);
        Severity: Minor
        Found in src/Entity/InternationalForms.php - About 1 hr to fix

          There are no issues that match your filters.

          Category
          Status