1
0
Fork 0
mirror of synced 2024-06-02 10:54:44 +12:00

linter fix

This commit is contained in:
shimon 2022-06-08 12:21:20 +03:00
parent ce6c2d2794
commit 40016f48c1
2 changed files with 1 additions and 2 deletions

View file

@ -720,7 +720,7 @@ App::put('/v1/projects/:projectId/webhooks/:webhookId')
->setAttribute('httpPass', $httpPass)
;
if(!empty($signatureKey)){
if (!empty($signatureKey)) {
$webhook->setAttribute('signatureKey', $signatureKey);
}

View file

@ -7,7 +7,6 @@ use Tests\E2E\Client;
trait WebhooksBase
{
public static function getWebhookSignature(array $webhook, string $signatureKey): string
{
$payload = json_encode($webhook['data']);