Total Complexity | 2 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class DeclinedExchangeNotification extends Mailable |
||
11 | { |
||
12 | use Queueable, SerializesModels; |
||
|
|||
13 | |||
14 | /** |
||
15 | * The declined exchange. |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | private $exchange; |
||
20 | |||
21 | /** |
||
22 | * Create a new message instance. |
||
23 | * |
||
24 | * @param \App\Judite\Models\Exchange $exchange |
||
25 | */ |
||
26 | public function __construct(Exchange $exchange) |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Build the message. |
||
33 | * |
||
34 | * @return $this |
||
35 | */ |
||
36 | public function build() |
||
48 |