Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Cannonb4ll committed Dec 13, 2023
1 parent 622a3b7 commit 4786c9b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/Notifications/CommentHasReplyNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ class CommentHasReplyNotification extends Notification implements ShouldQueue
{
use Queueable;

public $tries = 5;

public $backoff = 10;

public function __construct(
public readonly Comment $comment
) {
Expand Down
4 changes: 4 additions & 0 deletions app/Notifications/Item/ItemHasNewCommentNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ class ItemHasNewCommentNotification extends Notification implements ShouldQueue
{
use Queueable;

public $tries = 5;

public $backoff = 10;

public function __construct(
public readonly Comment $comment,
public readonly User $user
Expand Down
4 changes: 4 additions & 0 deletions app/Notifications/Item/ItemUpdatedNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ class ItemUpdatedNotification extends Notification implements ShouldQueue
{
use Queueable;

public $tries = 5;

public $backoff = 10;

public function __construct(
public readonly Item $item
) {
Expand Down
4 changes: 4 additions & 0 deletions app/Notifications/MentionNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ class MentionNotification extends Notification implements ShouldQueue
{
use Queueable;

public $tries = 5;

public $backoff = 10;

public function __construct(
public readonly Comment $comment
) {
Expand Down

0 comments on commit 4786c9b

Please sign in to comment.