Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
10 | class TestMailable extends Mailable |
||
11 | { |
||
12 | use Queueable, SerializesModels; |
||
|
|||
13 | |||
14 | public $recipient; |
||
15 | |||
16 | /** |
||
17 | * Create a new message instance. |
||
18 | * |
||
19 | * @return void |
||
20 | */ |
||
21 | 11 | public function __construct(String $recipient) |
|
24 | 11 | } |
|
25 | |||
26 | /** |
||
27 | * Build the message. |
||
28 | * |
||
29 | * @return $this |
||
30 | */ |
||
31 | 10 | public function build() |
|
38 |