Jrean\UserVerification\UserVerification::sendLater PHP Метод

sendLater() публичный Метод

Send later by e-mail a link containing the verification token.
public sendLater ( integer $seconds, Illuminate\Contracts\Auth\Authenticatable $user, string $subject = null, string $from = null, string $name = null ) : boolean
$seconds integer
$user Illuminate\Contracts\Auth\Authenticatable
$subject string
$from string
$name string
Результат boolean
    public function sendLater($seconds, AuthenticatableContract $user, $subject = null, $from = null, $name = null)
    {
        if (!$this->isCompliant($user)) {
            throw new ModelNotCompliantException();
        }
        return (bool) $this->emailLaterVerificationLink($seconds, $user, $subject, $from, $name);
    }