mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Code cleanup
This commit is contained in:
@@ -37,11 +37,11 @@ class WebhookAttemptTransformer extends AbstractTransformer
|
||||
public function transform(WebhookAttempt $attempt): array
|
||||
{
|
||||
return [
|
||||
'id' => (string)$attempt->id,
|
||||
'id' => (string) $attempt->id,
|
||||
'created_at' => $attempt->created_at->toAtomString(),
|
||||
'updated_at' => $attempt->updated_at->toAtomString(),
|
||||
'webhook_message_id' => (string)$attempt->webhook_message_id,
|
||||
'status_code' => (int)$attempt->status_code,
|
||||
'webhook_message_id' => (string) $attempt->webhook_message_id,
|
||||
'status_code' => (int) $attempt->status_code,
|
||||
'logs' => $attempt->logs,
|
||||
'response' => $attempt->response,
|
||||
];
|
||||
|
Reference in New Issue
Block a user