From cc7dc5c3283bb453482f0ede72c42119b6870467 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20J=C3=B8rgensen?= Date: Wed, 21 Feb 2024 13:24:38 +0100 Subject: [PATCH] Update JiraSecurityIssue.php --- src/JiraSecurityIssue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/JiraSecurityIssue.php b/src/JiraSecurityIssue.php index 3d2689d..30907dc 100644 --- a/src/JiraSecurityIssue.php +++ b/src/JiraSecurityIssue.php @@ -80,7 +80,7 @@ public function __construct() $this->issueType = \getenv('JIRA_ISSUE_TYPE') ?: 'Bug'; $this->restrictedCommentRole = \getenv('JIRA_RESTRICTED_COMMENT_ROLE') ?: 'Developers'; - $watchers = trim(\getenv('JIRA_WATCHERS')); + $watchers = \trim(\getenv('JIRA_WATCHERS')); if ($watchers) { $this->watchers = \explode(',', $watchers);