| Total Complexity | 3 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class UserInvitation extends Mailable |
||
| 9 | { |
||
| 10 | use Queueable; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var \App\Models\UserInvitation |
||
| 14 | */ |
||
| 15 | public $invitation; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Create a new message instance. |
||
| 19 | * |
||
| 20 | * @return void |
||
| 21 | */ |
||
| 22 | public function __construct(\App\Models\UserInvitation $invitation) |
||
| 23 | { |
||
| 24 | $this->invitation = $invitation; |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Build the message. |
||
| 29 | * |
||
| 30 | * @return $this |
||
| 31 | */ |
||
| 32 | public function build() |
||
| 37 | } |
||
| 38 | |||
| 39 | protected function getSubject() |
||
| 44 |