forked from LiveCarta/PayPal-PHP-SDK
Check if links is an array
This commit is contained in:
@@ -41,7 +41,7 @@ class PayPalResourceModel extends PayPalModel implements IResource
|
|||||||
|
|
||||||
public function getLink($rel)
|
public function getLink($rel)
|
||||||
{
|
{
|
||||||
if ($this->links) {
|
if (is_array($this->links)) {
|
||||||
foreach ($this->links as $link) {
|
foreach ($this->links as $link) {
|
||||||
if ($link->getRel() == $rel) {
|
if ($link->getRel() == $rel) {
|
||||||
return $link->getHref();
|
return $link->getHref();
|
||||||
|
|||||||
Reference in New Issue
Block a user