Fixed classname resolution of Links property in Order class for PPReflectionUtil

This commit is contained in:
OJ Tibi
2014-08-26 16:23:53 +08:00
parent 72d2380df6
commit c1241998b8

View File

@@ -14,7 +14,7 @@ use PayPal\Rest\ApiContext;
* @property string state * @property string state
* @property \PayPal\Api\Amount amount * @property \PayPal\Api\Amount amount
* @property string parentPayment * @property string parentPayment
* @property array|\PayPal\Api\Links links * @property \PayPal\Api\Links links
* @property string reasonCode * @property string reasonCode
*/ */
class Order extends PPModel class Order extends PPModel
@@ -170,7 +170,7 @@ class Order extends PPModel
/** /**
* Set Links * Set Links
* *
* @param array|\PayPal\Api\Links $links * @param \PayPal\Api\Links $links
* *
* @return $this * @return $this
*/ */
@@ -184,7 +184,7 @@ class Order extends PPModel
/** /**
* Get Links * Get Links
* *
* @return array|\PayPal\Api\Links * @return \PayPal\Api\Links
*/ */
public function getLinks() public function getLinks()
{ {