Total Complexity | 2 |
Total Lines | 47 |
Duplicated Lines | 0 % |
Coverage | 66.67% |
Changes | 0 |
1 | <?php |
||
13 | class JobPosterReviewRequested extends Mailable implements ShouldQueue |
||
14 | { |
||
15 | use Queueable, SerializesModels; |
||
16 | |||
17 | /** |
||
18 | * The number of times the job may be attempted. |
||
19 | * |
||
20 | * @var integer |
||
21 | */ |
||
22 | public $tries = 5; |
||
23 | |||
24 | /** |
||
25 | * The Job Poster instance. |
||
26 | * |
||
27 | * @var JobPoster |
||
28 | */ |
||
29 | public $jobPoster; |
||
30 | |||
31 | /** |
||
32 | * The Manager that owns the Job Poster. |
||
33 | * |
||
34 | * @var User |
||
35 | */ |
||
36 | public $manager; |
||
37 | |||
38 | /** |
||
39 | * Create a new message instance. |
||
40 | * |
||
41 | * @param JobPoster $jobPoster Incoming Job Poster object. |
||
42 | * @param User $manager Incoming User object. |
||
43 | * |
||
44 | * @return void |
||
45 | */ |
||
46 | 1 | public function __construct(JobPoster $jobPoster, User $manager) |
|
50 | 1 | } |
|
51 | |||
52 | /** |
||
53 | * Build the message. |
||
54 | * |
||
55 | * @return $this |
||
56 | */ |
||
57 | public function build() |
||
62 |