| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class Hello extends Mailable |
||
| 12 | { |
||
| 13 | use Queueable, SerializesModels; |
||
| 14 | protected $user; |
||
| 15 | |||
| 16 | |||
| 17 | /** |
||
| 18 | * Create a new message instance. |
||
| 19 | * |
||
| 20 | * @return void |
||
| 21 | */ |
||
| 22 | public function __construct(User $user) |
||
| 23 | { |
||
| 24 | $this-> user = $user; |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Build the message. |
||
| 29 | * |
||
| 30 | * @return $this |
||
| 31 | */ |
||
| 32 | public function build() |
||
| 35 | } |
||
| 36 | } |
||
| 37 |