From 09beb812d4d95c7fe47f5d400ab8f931c44e7bdd Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Sat, 10 Aug 2024 17:27:21 +0100 Subject: [PATCH] fix --- src/Configuration/Context.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Configuration/Context.php b/src/Configuration/Context.php index d9098f8c..a19cabe4 100644 --- a/src/Configuration/Context.php +++ b/src/Configuration/Context.php @@ -74,7 +74,7 @@ final class Context */ public function bitbucket(string $project): self { - $this->issues = 'https://bitbucket.org/{$project}/issues/%s'; + $this->issues = "https://bitbucket.org/{$project}/issues/%s"; $this->prs = "https://bitbucket.org/{$project}/pull-requests/%s"; $this->assignees = 'https://bitbucket.org/%s';