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;
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();
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();
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);
- Read upRead up
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 17 (exceeds 5 allowed). Consider refactoring. Open
public function __construct(\stdClass $response = null)
{
$this->LabelLinkIndicator = null;
if (null !== $response) {
- Read upRead up
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 56 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function __construct(\stdClass $response = null)
{
$this->PackageReferenceNumber = [];
$this->ShipmentReferenceNumber = [];
$this->Resolution = new Resolution();
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);
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();
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
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();
Method createRequest
has 48 lines of code (exceeds 25 allowed). Consider refactoring. Open
private function createRequest()
{
$xml = new DOMDocument();
$xml->formatOutput = true;
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();
}
- Read upRead up
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 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();
- Read upRead up
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();
}
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();
- Read upRead up
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();
}
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) {
- Read upRead up
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));
- Read upRead up
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;
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) {