Updated stubs to support namespace

This commit is contained in:
Ganesh Hegde
2013-05-29 14:37:22 +05:30
parent 479730d1c4
commit 50d2c56f8b
37 changed files with 530 additions and 324 deletions

View File

@@ -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;