File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/Illuminate/Auth/Notifications Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ class ResetPassword extends Notification
18
18
/**
19
19
* The callback that should be used to create the reset password URL.
20
20
*
21
- * @var \Closure|null
21
+ * @var ( \Closure(mixed, string): string) |null
22
22
*/
23
23
public static $ createUrlCallback ;
24
24
25
25
/**
26
26
* The callback that should be used to build the mail message.
27
27
*
28
- * @var \Closure|null
28
+ * @var ( \Closure(mixed, string): \Illuminate\Notifications\Messages\MailMessage) |null
29
29
*/
30
30
public static $ toMailCallback ;
31
31
@@ -103,7 +103,7 @@ protected function resetUrl($notifiable)
103
103
/**
104
104
* Set a callback that should be used when creating the reset password button URL.
105
105
*
106
- * @param \Closure $callback
106
+ * @param \Closure(mixed, string): string $callback
107
107
* @return void
108
108
*/
109
109
public static function createUrlUsing ($ callback )
@@ -114,7 +114,7 @@ public static function createUrlUsing($callback)
114
114
/**
115
115
* Set a callback that should be used when building the notification mail message.
116
116
*
117
- * @param \Closure $callback
117
+ * @param \Closure(mixed, string): (\Illuminate\Notifications\Messages\MailMessage|\Illuminate\Mail\Mailable) $callback
118
118
* @return void
119
119
*/
120
120
public static function toMailUsing ($ callback )
You can’t perform that action at this time.
0 commit comments