gabrielbull/php-ups-api

View on GitHub

Showing 141 of 176 total issues

File ShipmentServiceOptions.php has 263 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace Ups\Entity;

use DOMDocument;
Severity: Minor
Found in src/Entity/ShipmentServiceOptions.php - About 2 hrs to fix

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

        public function __construct($response = null)
        {
            $this->Service = new Service();
            $this->BillingWeight = new BillingWeight();
            $this->TransportationCharges = new Charges();
    Severity: Major
    Found in src/Entity/RatedShipment.php - About 2 hrs to fix

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

          public function __construct($response = null)
          {
              $this->ShipmentReferenceNumber = new ShipmentReferenceNumber();
              $this->PackageReferenceNumber = new PackageReferenceNumber();
              $this->Service = new Service();
      Severity: Major
      Found in src/Entity/Generic.php - About 2 hrs to fix

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

            public function __construct(\stdClass $response = null)
            {
                $this->LabelLinkIndicator = null;
        
                if (null !== $response) {
        Severity: Minor
        Found in src/Entity/LabelDelivery.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 build has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
        Open

            public function build(\stdClass $response = null)
            {
                if (null !== $response) {
                    if (isset($response->Arrival)) {
                        $this->Arrival = new Arrival($response->Arrival);
        Severity: Minor
        Found in src/Entity/EstimatedArrivalTrait.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 request has 56 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function request($access, $request, $endpointurl)
            {
                $this->setAccess($access);
                $this->setRequest($request);
                $this->setEndpointUrl($endpointurl);
        Severity: Major
        Found in src/Request.php - About 2 hrs to fix

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

              public function __construct(\stdClass $response = null)
              {
                  $this->PackageReferenceNumber = [];
                  $this->ShipmentReferenceNumber = [];
                  $this->Resolution = new Resolution();
          Severity: Major
          Found in src/Entity/Exception.php - About 2 hrs to fix

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

                public function __construct($response = null)
                {
                    $this->ShipmentReferenceNumber = new ShipmentReferenceNumber();
                    $this->PackageReferenceNumber = new PackageReferenceNumber();
                    $this->ActivityLocation = new ActivityLocation();
            Severity: Major
            Found in src/Entity/Delivery.php - About 2 hrs to fix

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

                  public function __construct($attributes = null)
                  {
                      $this->setPackagingType(
                          new PackagingType(
                              isset($attributes->PackagingType) ? $attributes->PackagingType : null
              Severity: Minor
              Found in src/Entity/Package.php - About 1 hr to fix

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

                    public function __construct($response = null)
                    {
                        $this->PackageReferenceNumber = new PackageReferenceNumber();
                        $this->ShipmentReferenceNumber = new ShipmentReferenceNumber();
                        $this->ActivityLocation = new ActivityLocation();
                Severity: Minor
                Found in src/Entity/Origin.php - About 1 hr to fix

                  Method createRequest has 48 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

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

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

                        public function __construct(\stdClass $response = null)
                        {
                            $this->StatusType = new StatusType();
                            $this->Manifest = new Manifest();
                            $this->Origin = new Origin();
                    Severity: Minor
                    Found in src/Entity/SubscriptionFile.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 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

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

                          private function createRequest(RateRequest $rateRequest)
                          {
                              $shipment = $rateRequest->getShipment();
                      
                              $document = $xml = new DOMDocument();
                      Severity: Minor
                      Found in src/Rate.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 41 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/Tradeability/Shipment.php - About 1 hr to fix

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

                            public function __construct(\stdClass $response = null)
                            {
                                $this->LabelImageFormat = new LabelImageFormat();
                        
                                if (null !== $response) {
                        Severity: Minor
                        Found in src/Entity/LabelImage.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 __construct has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public function __construct($parameters = null)
                            {
                                if (null !== $parameters) {
                                    if (isset($parameters->COD)) {
                                        $this->setCOD(new COD($parameters->COD));
                        Severity: Minor
                        Found in src/Entity/PackageServiceOptions.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 createRequest has 39 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            private function createRequest(TimeInTransitRequest $timeInTransitRequest)
                            {
                                $xml = new DOMDocument();
                                $xml->formatOutput = true;
                        
                        
                        Severity: Minor
                        Found in src/TimeInTransit.php - About 1 hr to fix

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

                              public function __construct($response = null)
                              {
                                  $this->CallTagARS = new CallTagARS();
                          
                                  if (null !== $response) {
                          Severity: Minor
                          Found in src/Entity/ShipmentServiceOptions.php - About 1 hr to fix
                            Severity
                            Category
                            Status
                            Source
                            Language