1
0
Fork 0
mirror of synced 2024-07-02 05:00:33 +12:00

Replace backticks with double quotes

This commit is contained in:
Steven Nguyen 2024-01-04 23:58:48 +00:00
parent 5d7eca7c99
commit 01df91aee9
No known key found for this signature in database
GPG key ID: 22EB8611C67E9E5C

View file

@ -193,7 +193,7 @@ class Messaging extends Action
$details[] = $response->getDetails();
foreach ($details as $detail) {
if ($detail['status'] === 'failure') {
$deliveryErrors[] = `Failed sending to target {$detail['recipient']} with error: {$detail['error']}`;
$deliveryErrors[] = "Failed sending to target {$detail['recipient']} with error: {$detail['error']}";
}
// Deleting push targets when token has expired.