mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
null checks
This commit is contained in:
parent
7a10866d5f
commit
c460287356
@ -61,9 +61,9 @@ class CreditCard
|
||||
'State' => $this->eway_driver->client->state,
|
||||
'PostalCode' => $this->eway_driver->client->postal_code,
|
||||
'Country' => $this->eway_driver->client->country->iso_3166_2,
|
||||
'Phone' => $this->eway_driver->client->phone,
|
||||
'Email' => $this->eway_driver->client->contacts()->first()->email,
|
||||
'Url' => $this->eway_driver->client->website,
|
||||
'Phone' => $this->eway_driver->client->phone ?? '',
|
||||
'Email' => $this->eway_driver->client->contacts()->first()->email ?? '',
|
||||
'Url' => $this->eway_driver->client->website ?? '',
|
||||
'Method' => \Eway\Rapid\Enum\PaymentMethod::CREATE_TOKEN_CUSTOMER,
|
||||
'SecuredCardData' => $securefieldcode,
|
||||
];
|
||||
|
Loading…
x
Reference in New Issue
Block a user