Showing 141 of 176 total issues
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);
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();
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();
}
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();
}
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');
}
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;
- 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 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();
}
- 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 10 (exceeds 5 allowed). Consider refactoring. Open
public function __construct($response = null)
{
$this->SubscriptionEvents = [];
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 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);
- 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 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);
- 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 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`.');
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) {
Method isMailInnovations
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
private function isMailInnovations()
{
$patterns = [
// UPS Mail Innovations tracking numbers
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);
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();
}
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();
}
- 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 9 (exceeds 5 allowed). Consider refactoring. Open
public function __construct(\stdClass $response = null)
{
if (null !== $response) {
if (isset($response->Number)) {
$this->Number = $response->Number;
- 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 createRequest
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
private function createRequest()
{
$xml = new DOMDocument();
$xml->formatOutput = true;
- 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 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();
}
- 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 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();
}
- 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"