gabrielbull/php-ups-api

View on GitHub

Showing 141 of 176 total issues

Method __construct has 29 lines of code (exceeds 25 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

    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

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

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

          Method validate has 28 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function validate(Address $address, $requestOption = self::REQUEST_OPTION_ADDRESS_VALIDATION, $maxSuggestion = 15)
              {
                  if ($maxSuggestion > 50) {
                      throw new \Exception('Maximum of 50 suggestions allowed');
                  }
          Severity: Minor
          Found in src/AddressValidation.php - About 1 hr to fix

            Function compileLabelSpecificationNode has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
            Open

                private function compileLabelSpecificationNode(ShipmentRequestLabelSpecification $labelSpec)
                {
                    $xml = new DOMDocument();
                    $xml->formatOutput = true;
            
            
            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

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

                public function toNode(DOMDocument $document = null)
                {
                    if (null === $document) {
                        $document = new DOMDocument();
                    }
            Severity: Minor
            Found in src/Entity/Package.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 request has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
            Open

                public function request($access, $request, $endpointurl)
                {
                    $this->setAccess($access);
                    $this->setRequest($request);
                    $this->setEndpointUrl($endpointurl);
            Severity: Minor
            Found in src/Request.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 getSubscription has a Cognitive Complexity of 10 (exceeds 5 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

            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 10 (exceeds 5 allowed). Consider refactoring.
            Open

                public function __construct($response = null)
                {
                    $this->SubscriptionEvents = [];
            
                    if (null !== $response) {
            Severity: Minor
            Found in src/Entity/QuantumViewEvents.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 __construct has 27 lines of code (exceeds 25 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 1 hr to fix

              Method isMailInnovations has 27 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  private function isMailInnovations()
                  {
                      $patterns = [
              
                          // UPS Mail Innovations tracking numbers
              Severity: Minor
              Found in src/Tracking.php - About 1 hr to fix

                Method recoverLabel has 27 lines of code (exceeds 25 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

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

                    Method build has 26 lines of code (exceeds 25 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 1 hr to fix

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

                          public function toNode(DOMDocument $document = null)
                          {
                              if (null === $document) {
                                  $document = new DOMDocument();
                              }
                      Severity: Minor
                      Found in src/Entity/Address.php - About 55 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 __construct has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function __construct($attributes = null)
                          {
                              if (null !== $attributes) {
                                  if (isset($attributes->Description)) {
                                      $this->setDescription1($attributes->Description);
                      Severity: Minor
                      Found in src/Entity/Product.php - About 55 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 __construct has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function __construct($attributes = null)
                          {
                              if (null !== $attributes) {
                                  if (isset($attributes->Code)) {
                                      $this->setCode($attributes->Code);
                      Severity: Minor
                      Found in src/Entity/ShipperFiled.php - About 55 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 __construct has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function __construct($response = null)
                          {
                              if (null !== $response) {
                                  if (isset($response->LanguageCode)) {
                                      $this->setLanguageCode($response->LanguageCode);
                      Severity: Minor
                      Found in src/Entity/Translate.php - About 55 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 toNode has a Cognitive Complexity of 9 (exceeds 5 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 55 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

                      Severity
                      Category
                      Status
                      Source
                      Language