Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
24 | class QueueSpoolJob extends Object implements Job |
||
25 | { |
||
26 | /** |
||
27 | * @var array|string the application component ID of the mailer object. |
||
28 | */ |
||
29 | public $mailer = 'mailer'; |
||
30 | /** |
||
31 | * @var Swift_Message |
||
32 | */ |
||
33 | public $message; |
||
34 | |||
35 | /** |
||
36 | * @inheritdoc |
||
37 | */ |
||
38 | 3 | public function init() |
|
42 | } |
||
43 | 2 | } |
|
44 | |||
45 | /** |
||
46 | * @param Queue $queue which pushed and is handling the job |
||
47 | */ |
||
48 | 1 | public function execute($queue) |
|
56 |