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);