forked from LiveCarta/PayPal-PHP-SDK
Updated stubs to support namespace
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
<?php
|
||||
namespace PayPal\Api;
|
||||
|
||||
use PayPal\Common\PPModel;
|
||||
|
||||
class ShippingAddress extends Address {
|
||||
/**
|
||||
@@ -21,14 +22,18 @@ class ShippingAddress extends Address {
|
||||
}
|
||||
|
||||
/**
|
||||
* Deprecated method
|
||||
* Name of the recipient at this address.
|
||||
* @param string $recipient_name
|
||||
* @deprecated. Instead use setRecipientName
|
||||
*/
|
||||
public function setRecipient_name($recipient_name) {
|
||||
$this->recipient_name = $recipient_name;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Deprecated method
|
||||
* Name of the recipient at this address.
|
||||
* @return string
|
||||
* @deprecated. Instead use getRecipientName
|
||||
*/
|
||||
public function getRecipient_name() {
|
||||
return $this->recipient_name;
|
||||
|
||||
Reference in New Issue
Block a user