PHP 8.3.31
Preview: TokenRepositoryInterface.php Size: 1.19 KB
/home/getspomw/royalsquad.us/vendor/laravel/framework/src/Illuminate/Auth/Passwords/TokenRepositoryInterface.php

<?php

namespace Illuminate\Auth\Passwords;

use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;

interface TokenRepositoryInterface
{
    /**
     * Create a new token.
     *
     * @param  \Illuminate\Contracts\Auth\CanResetPassword  $user
     * @return string
     */
    public function create(CanResetPasswordContract $user);

    /**
     * Determine if a token record exists and is valid.
     *
     * @param  \Illuminate\Contracts\Auth\CanResetPassword  $user
     * @param  string  $token
     * @return bool
     */
    public function exists(CanResetPasswordContract $user, #[\SensitiveParameter] $token);

    /**
     * Determine if the given user recently created a password reset token.
     *
     * @param  \Illuminate\Contracts\Auth\CanResetPassword  $user
     * @return bool
     */
    public function recentlyCreatedToken(CanResetPasswordContract $user);

    /**
     * Delete a token record.
     *
     * @param  \Illuminate\Contracts\Auth\CanResetPassword  $user
     * @return void
     */
    public function delete(CanResetPasswordContract $user);

    /**
     * Delete expired tokens.
     *
     * @return void
     */
    public function deleteExpired();
}

Directory Contents

Dirs: 0 × Files: 7

Name Size Perms Modified Actions
3.32 KB lrw-rw-rw- 2025-09-17 06:52:56
Edit Download
625 B lrw-rw-rw- 2025-09-17 06:52:56
Edit Download
6.09 KB lrw-rw-rw- 2025-09-17 06:52:56
Edit Download
6.03 KB lrw-rw-rw- 2025-09-17 06:52:56
Edit Download
3.99 KB lrw-rw-rw- 2025-09-17 06:52:56
Edit Download
1010 B lrw-rw-rw- 2025-09-17 06:52:56
Edit Download
1.19 KB lrw-rw-rw- 2025-09-17 06:52:56
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).