Fixes for types

This commit is contained in:
David Bomba 2020-08-25 21:23:49 +10:00
parent fde50b308a
commit 4a704651c7

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,
];