We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
1 | <?php |
||
11 | class UserCreated extends Mailable implements ShouldQueue |
||
12 | { |
||
13 | use Queueable, SerializesModels; |
||
14 | |||
15 | protected $user; |
||
16 | |||
17 | /** |
||
18 | * Create a new message instance. |
||
19 | * |
||
20 | */ |
||
21 | public function __construct(User $user) |
||
25 | |||
26 | /** |
||
27 | * Build the message. |
||
28 | * |
||
29 | * @return $this |
||
30 | */ |
||
31 | public function build() |
||
42 | } |
||
43 |