<?php declare(strict_types=1);
namespace Komma\KMS\Auth;
use Illuminate\Contracts\Auth\CanResetPassword;
interface CanSetAndResetPassword extends CanResetPassword
{
/**
* Send the password set notification.
*
* @param string $token
* @return void
*/
public function sendPasswordSetNotification($token);
}