for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ups\Entity;
class LabelRecoveryRequest
{
public $LabelSpecification;
public $Translate;
public $LabelDelivery;
public $TrackingNumber;
public $ReferenceNumber;
public $ShipperNumber;
public function __construct($request = null)
$request
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$this->LabelSpecification = new LabelSpecification();
$this->Translate = new Translate();
$this->LabelDelivery = new LabelDelivery();
$this->ReferenceNumber = new ReferenceNumber();
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.