File tree 1 file changed +14
-6
lines changed
1 file changed +14
-6
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
-
2
+ /**
3
+ * This file is part of Jrean\UserVerification package.
4
+ *
5
+ * (c) Jean Ragouin <go@askjong.com> <www.askjong.com>
6
+ */
3
7
namespace Jrean \UserVerification \Mail ;
4
8
5
9
use Illuminate \Bus \Queueable ;
@@ -22,27 +26,31 @@ class VerificationTokenGenerated extends Mailable
22
26
/**
23
27
* The subject of the message.
24
28
*
25
- * @var string
29
+ * @var string|null
26
30
*/
27
31
public $ subject ;
28
32
29
33
/**
30
- * The person the message is from.
34
+ * The person/company/project e-mail the message is from.
31
35
*
32
- * @var mixed
36
+ * @var string|null
33
37
*/
34
38
public $ from_address ;
35
39
36
40
/**
37
- * The person name the message is from.
41
+ * The person/company/project name the message is from.
38
42
*
39
- * @var mixed
43
+ * @var string|null
40
44
*/
41
45
public $ from_name ;
42
46
43
47
/**
44
48
* Create a new message instance.
45
49
*
50
+ * @param \Illuminate\Contracts\Auth\Authenticatable $user
51
+ * @param string|null $subject
52
+ * @param string|null $from_address
53
+ * @param string|null $from_name
46
54
* @return void
47
55
*/
48
56
public function __construct (
You can’t perform that action at this time.
0 commit comments