Total Complexity | 3 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class MailJob extends Job implements RetryableJob |
||
|
|||
12 | { |
||
13 | use RetryableTrait; |
||
14 | |||
15 | /** |
||
16 | * @var string|array|MailerInterface $mailer |
||
17 | */ |
||
18 | public $mailer = 'mailer'; |
||
19 | |||
20 | /** |
||
21 | * @var array $messages |
||
22 | */ |
||
23 | public $messages; |
||
24 | |||
25 | public function init() |
||
34 | } |
||
35 | |||
36 | protected function run() |
||
42 |
This interface has been deprecated. The supplier of the interface has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the interface will be removed and what other interface to use instead.