From 7728cf393c7dadd4566d73aaa8aa9764713b9432 Mon Sep 17 00:00:00 2001 From: Martin San Juan Date: Mon, 30 Mar 2020 18:53:08 -0300 Subject: [PATCH] style: run php-cs-fixes --- tests/Api/WebhookTest.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/Api/WebhookTest.php b/tests/Api/WebhookTest.php index 6ad83a5..752cff9 100644 --- a/tests/Api/WebhookTest.php +++ b/tests/Api/WebhookTest.php @@ -81,16 +81,16 @@ class WebhookTest extends TestCase $this->setRequestBody([ [ 'name' => 'id', - 'content' => 'opened' + 'content' => 'opened', ], [ 'name' => 'url', - 'content' => 'url_1' + 'content' => 'url_1', ], [ 'name' => 'url', - 'content' => 'url_2' - ] + 'content' => 'url_2', + ], ]); $api = $this->getApiInstance('key'); @@ -105,16 +105,16 @@ class WebhookTest extends TestCase $this->setRequestBody([ [ 'name' => 'url', - 'content' => 'url_1' + 'content' => 'url_1', ], [ 'name' => 'url', - 'content' => 'url_2' - ] + 'content' => 'url_2', + ], ]); $api = $this->getApiInstance('key'); - $api->update('example.com', '4711', ['url_1', 'url_2'] ); + $api->update('example.com', '4711', ['url_1', 'url_2']); } public function testDelete()