Add PayPal transaction id to order note

This commit is contained in:
dinamiko 2022-01-31 11:02:51 +01:00
parent f454c60292
commit d2f257a812
4 changed files with 20 additions and 6 deletions

View file

@ -111,6 +111,11 @@ class PayPalApiException extends RuntimeException {
return false;
}
/**
* Returns response issues.
*
* @return array
*/
public function issues(): array {
return $this->response->issues ?? array();
}