Skip to content

Commit 72c7fe2

Browse files
committed
Docblocks
1 parent 48ec792 commit 72c7fe2

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

src/Mail/VerificationTokenGenerated.php

+14-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<?php
2-
2+
/**
3+
* This file is part of Jrean\UserVerification package.
4+
*
5+
* (c) Jean Ragouin <go@askjong.com> <www.askjong.com>
6+
*/
37
namespace Jrean\UserVerification\Mail;
48

59
use Illuminate\Bus\Queueable;
@@ -22,27 +26,31 @@ class VerificationTokenGenerated extends Mailable
2226
/**
2327
* The subject of the message.
2428
*
25-
* @var string
29+
* @var string|null
2630
*/
2731
public $subject;
2832

2933
/**
30-
* The person the message is from.
34+
* The person/company/project e-mail the message is from.
3135
*
32-
* @var mixed
36+
* @var string|null
3337
*/
3438
public $from_address;
3539

3640
/**
37-
* The person name the message is from.
41+
* The person/company/project name the message is from.
3842
*
39-
* @var mixed
43+
* @var string|null
4044
*/
4145
public $from_name;
4246

4347
/**
4448
* Create a new message instance.
4549
*
50+
* @param \Illuminate\Contracts\Auth\Authenticatable $user
51+
* @param string|null $subject
52+
* @param string|null $from_address
53+
* @param string|null $from_name
4654
* @return void
4755
*/
4856
public function __construct(

0 commit comments

Comments
 (0)