From 4290eab80a82e212c94cc67b7b1a7d50b894c02d Mon Sep 17 00:00:00 2001 From: Bob E Moe Date: Tue, 25 Jun 2019 08:30:49 +0100 Subject: [PATCH] fix indenting --- Gitea.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gitea.php b/Gitea.php index f181e0a..1bc723f 100644 --- a/Gitea.php +++ b/Gitea.php @@ -28,12 +28,12 @@ class Gitea{ } public function addLabelsToIssue($issue,$labels){ - $args=['labels'=>$labels]; - return $this->request($issue->url.'/labels','POST',$args); + $args=['labels'=>$labels]; + return $this->request($issue->url.'/labels','POST',$args); } public function removeLabelFromIssue($issue,$id){ - return $this->request($issue->url."/labels/$id",'DELETE'); + return $this->request($issue->url."/labels/$id",'DELETE'); } public function addComment($issue,$body){