From 4bfebc202f21cc1b0056ab46d04d217b18e4efac Mon Sep 17 00:00:00 2001 From: Matthieu Calie Date: Wed, 29 Jun 2022 09:07:38 +0200 Subject: [PATCH] Add missing put to client interface --- src/Service/AtlassianRestClientInterface.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Service/AtlassianRestClientInterface.php b/src/Service/AtlassianRestClientInterface.php index a901fcf..25fc114 100644 --- a/src/Service/AtlassianRestClientInterface.php +++ b/src/Service/AtlassianRestClientInterface.php @@ -17,6 +17,8 @@ public function get(string $restUrl): string; public function post(string $restUrl, array $json): string; + public function put(string $restUrl, array $json): string; + public function delete(string $restUrl): string; public function sendFile(UploadedFile $file, string $restUrl): string;