From 532e99bab237f17bc507b1daa9f7171bef8ef20d Mon Sep 17 00:00:00 2001 From: Laszlo Halasz Date: Mon, 28 Oct 2024 11:29:44 +0100 Subject: [PATCH] AUT-3504: remove duplicated callbackUrl --- src/Suite/Api/Program/EndPoints.php | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/Suite/Api/Program/EndPoints.php diff --git a/src/Suite/Api/Program/EndPoints.php b/src/Suite/Api/Program/EndPoints.php deleted file mode 100644 index 54a3f51..0000000 --- a/src/Suite/Api/Program/EndPoints.php +++ /dev/null @@ -1,18 +0,0 @@ -apiBaseUrl = $apiBaseUrl; - } - - public function callbackUrl(int $customerId, string $triggerId): string - { - return "{$this->apiBaseUrl}/{$customerId}/ac/programs/callbacks/{$triggerId}"; - } -}