Skip to content

Commit

Permalink
fix: deprecated variable interpolation syntax in PHP 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JoyceBabu authored and pprkut committed Apr 28, 2024
1 parent 4746684 commit 929dca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Job/Status.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class Status
public function __construct($id, $prefix = '')
{
$this->id = $id;
$this->prefix = empty($prefix) ? '' : "${prefix}_";
$this->prefix = empty($prefix) ? '' : "{$prefix}_";
}

/**
Expand Down

0 comments on commit 929dca1

Please sign in to comment.