gabrielbull/php-ups-api

View on GitHub

Showing 176 of 176 total issues

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

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

                public function __construct(\stdClass $response = null)
                {
                    $this->TransitFrom = new Address();
                    $this->TransitTo = new Address();
                    $this->ShipmentWeight = new ShipmentWeight();
            Severity: Minor
            Found in src/Entity/TimeInTransitResponse.php - About 1 hr to fix

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

                  public function __construct(\stdClass $attributes = null)
                  {
                      $this->address = new Address();
              
                      if (null !== $attributes) {
              Severity: Minor
              Found in src/Entity/ShipTo.php - About 1 hr to fix

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

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

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

                      public function toNode(DOMDocument $document = null)
                      {
                          if (null === $document) {
                              $document = new DOMDocument();
                          }
                  Severity: Minor
                  Found in src/Entity/AddressKeyFormat.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 12 (exceeds 5 allowed). Consider refactoring.
                  Open

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

                      public function recoverLabel($trackingData, $labelSpecification = null, $labelDelivery = null, $translate = null)
                      {
                          if (is_array($trackingData)) {
                              if (!isset($trackingData['value'])) {
                                  throw new InvalidArgumentException('$trackingData parameter is required to contain `value`.');
                  Severity: Minor
                  Found in src/Shipping.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 35 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

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

                    Method createRecoverLabelRequest has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        private function createRecoverLabelRequest($trackingData, $labelSpecificationOpts = null, $labelDeliveryOpts = null, $translateOpts = null)
                        {
                            $xml = new DOMDocument();
                            $xml->formatOutput = true;
                    
                    
                    Severity: Minor
                    Found in src/Shipping.php - About 1 hr to fix

                      Method toNode has 34 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/Product.php - About 1 hr to fix

                        Method getSubscription has 34 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            public function getSubscription($name = null, $beginDateTime = null, $endDateTime = null, $fileName = null, $bookmark = null)
                            {
                                // Format date times
                                if (null !== $beginDateTime) {
                                    $beginDateTime = $this->formatDateTime($beginDateTime);
                        Severity: Minor
                        Found in src/QuantumView.php - About 1 hr to fix
                          Severity
                          Category
                          Status
                          Source
                          Language