payment responce errorMessage bug fix
This commit is contained in:
parent
643f833e10
commit
0d5ad8a24a
|
|
@ -19,6 +19,8 @@ class TicketCommented extends Notification implements ShouldQueue
|
|||
*/
|
||||
protected $comment;
|
||||
|
||||
public $tries = 2;
|
||||
|
||||
public function __construct(HelpTicketComment $comment)
|
||||
{
|
||||
$this->comment = $comment;
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ class TicketReceived extends Notification implements ShouldQueue
|
|||
*
|
||||
* @var int
|
||||
*/
|
||||
public $maxExceptions = 3;
|
||||
public $tries = 2;
|
||||
|
||||
protected $ticket;
|
||||
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ class UserResetPassword extends Notification implements ShouldQueue
|
|||
|
||||
private $token;
|
||||
|
||||
public $tries = 2;
|
||||
/**
|
||||
* UserResetPassword constructor.
|
||||
* @param $token
|
||||
|
|
|
|||
|
|
@ -50,4 +50,4 @@
|
|||
});
|
||||
});
|
||||
</script>
|
||||
@endpush
|
||||
@endpush
|
||||
|
|
|
|||
Loading…
Reference in New Issue