From c4c698594fed3fb4c848e437f5268fb88ab6374e Mon Sep 17 00:00:00 2001 From: Joyce Babu Date: Mon, 2 Oct 2023 17:37:32 +0530 Subject: [PATCH] fix: deprecated variable interpolation syntax in PHP 8.2 --- lib/Job/Status.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Job/Status.php b/lib/Job/Status.php index 1e3c53b..0e9cb75 100644 --- a/lib/Job/Status.php +++ b/lib/Job/Status.php @@ -50,7 +50,7 @@ class Status public function __construct($id, $prefix = '') { $this->id = $id; - $this->prefix = empty($prefix) ? '' : "${prefix}_"; + $this->prefix = empty($prefix) ? '' : "{$prefix}_"; } /**