| 1 | <?php |
||
| 5 | class RateRequest |
||
| 6 | { |
||
| 7 | /** @deprecated */ |
||
| 8 | public $PickupType; |
||
| 9 | /** @deprecated */ |
||
| 10 | public $Shipment; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var PickupType |
||
| 14 | */ |
||
| 15 | private $pickupType; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var CustomerClassification |
||
| 19 | */ |
||
| 20 | private $customerClassification; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var Shipment |
||
| 24 | */ |
||
| 25 | private $shipment; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param null|object $attributes |
||
| 29 | */ |
||
| 30 | 1 | public function __construct($attributes = null) |
|
| 35 | |||
| 36 | /** |
||
| 37 | * @return PickupType |
||
| 38 | */ |
||
| 39 | public function getPickupType() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @param PickupType $pickupType |
||
| 46 | * |
||
| 47 | * @return $this |
||
| 48 | */ |
||
| 49 | 1 | public function setPickupType(PickupType $pickupType) |
|
| 56 | |||
| 57 | /** |
||
| 58 | * @return CustomerClassification |
||
| 59 | */ |
||
| 60 | public function getCustomerClassification() |
||
| 64 | |||
| 65 | /** |
||
| 66 | * @param CustomerClassification $customerClassification |
||
| 67 | * |
||
| 68 | * @return $this |
||
| 69 | */ |
||
| 70 | public function setCustomerClassification(CustomerClassification $customerClassification) |
||
| 76 | |||
| 77 | /** |
||
| 78 | * @return Shipment |
||
| 79 | */ |
||
| 80 | public function getShipment() |
||
| 84 | |||
| 85 | /** |
||
| 86 | * @param Shipment $shipment |
||
| 87 | * |
||
| 88 | * @return $this |
||
| 89 | */ |
||
| 90 | 1 | public function setShipment(Shipment $shipment) |
|
| 97 | } |
||
| 98 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.