1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00

Merge pull request #4014 from turbo124/v2

Fixes for types
This commit is contained in:
David Bomba 2020-08-25 21:24:14 +10:00 committed by GitHub
commit 900f784a4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -44,6 +44,7 @@ class CompanyGateway extends BaseModel
'custom_value3',
'custom_value4',
'token_billing',
'label',
];
public static $credit_cards = [

View File

@ -31,7 +31,7 @@ class SystemLogTransformer extends EntityTransformer
'event_id' => (int) $system_log->event_id,
'category_id' => (int) $system_log->category_id,
'type_id' => (int) $system_log->type_id,
'log' => (string) $system_log->log,
'log' => $system_log->log,
'updated_at' => (int)$system_log->updated_at,
'created_at' => (int)$system_log->created_at,
];