Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
9 | class TestimonialSubmitted extends Mailable implements ShouldQueue |
||
10 | { |
||
11 | use Queueable; |
||
12 | |||
13 | /** |
||
14 | * @var mixed |
||
15 | */ |
||
16 | public $testimonial; |
||
17 | |||
18 | /** |
||
19 | * Create a new message instance. |
||
20 | * |
||
21 | * @return void |
||
22 | */ |
||
23 | public function __construct(array $testimonial) |
||
24 | { |
||
25 | $this->testimonial = $testimonial; |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * Build the message. |
||
30 | * |
||
31 | * @return $this |
||
32 | */ |
||
33 | public function build() |
||
37 | } |
||
38 | } |
||
39 |