mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Various PSR12 code cleanup
This commit is contained in:
@@ -33,18 +33,18 @@ class WebhookAttemptTransformer extends AbstractTransformer
|
||||
/**
|
||||
* Transform the preference
|
||||
*
|
||||
* @param WebhookAttempt $attempt
|
||||
* @param WebhookAttempt $attempt
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
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