Skip to content

Commit dee10ca

Browse files
authored
Fix type nullability on PasswordBroker.events property (#55097)
Per constructor, this property may be null.
1 parent c5f5e3c commit dee10ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Auth/Passwords/PasswordBroker.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class PasswordBroker implements PasswordBrokerContract
3030
/**
3131
* The event dispatcher instance.
3232
*
33-
* @var \Illuminate\Contracts\Events\Dispatcher
33+
* @var \Illuminate\Contracts\Events\Dispatcher|null
3434
*/
3535
protected $events;
3636

0 commit comments

Comments
 (0)