-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathNotifierQueueTask.php
More file actions
55 lines (49 loc) · 987 Bytes
/
NotifierQueueTask.php
File metadata and controls
55 lines (49 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
namespace Bow\Notifier;
use Bow\Database\Barry\Model;
use Bow\Queue\QueueTask;
use Throwable;
class NotifierQueueTask extends QueueTask
{
/**
* The message bag
*
* @var array
*/
private array $bags = [];
/**
* NotifierQueueTask constructor
*
* @param Model $context
* @param Notifier $notifier
*/
public function __construct(
Model $context,
Notifier $notifier,
) {
$this->bags = [
"notifier" => $notifier,
"context" => $context,
];
}
/**
* Process mail
*
* @return void
*/
public function process(): void
{
$notifier = $this->bags['notifier'];
$notifier->process($this->bags['context']);
}
/**
* Send the processing exception
*
* @param Throwable $e
* @return void
*/
public function onException(Throwable $e): void
{
$this->deleteTask();
}
}