PHP 8.3.31
Preview: UserProvider.php Size: 1.79 KB
/home/getspomw/royalsquad.us/vendor/laravel/framework/src/Illuminate/Contracts/Auth/UserProvider.php

<?php

namespace Illuminate\Contracts\Auth;

interface UserProvider
{
    /**
     * Retrieve a user by their unique identifier.
     *
     * @param  mixed  $identifier
     * @return \Illuminate\Contracts\Auth\Authenticatable|null
     */
    public function retrieveById($identifier);

    /**
     * Retrieve a user by their unique identifier and "remember me" token.
     *
     * @param  mixed  $identifier
     * @param  string  $token
     * @return \Illuminate\Contracts\Auth\Authenticatable|null
     */
    public function retrieveByToken($identifier, #[\SensitiveParameter] $token);

    /**
     * Update the "remember me" token for the given user in storage.
     *
     * @param  \Illuminate\Contracts\Auth\Authenticatable  $user
     * @param  string  $token
     * @return void
     */
    public function updateRememberToken(Authenticatable $user, #[\SensitiveParameter] $token);

    /**
     * Retrieve a user by the given credentials.
     *
     * @param  array  $credentials
     * @return \Illuminate\Contracts\Auth\Authenticatable|null
     */
    public function retrieveByCredentials(#[\SensitiveParameter] array $credentials);

    /**
     * Validate a user against the given credentials.
     *
     * @param  \Illuminate\Contracts\Auth\Authenticatable  $user
     * @param  array  $credentials
     * @return bool
     */
    public function validateCredentials(Authenticatable $user, #[\SensitiveParameter] array $credentials);

    /**
     * Rehash the user's password if required and supported.
     *
     * @param  \Illuminate\Contracts\Auth\Authenticatable  $user
     * @param  array  $credentials
     * @param  bool  $force
     * @return void
     */
    public function rehashPasswordIfRequired(Authenticatable $user, #[\SensitiveParameter] array $credentials, bool $force = false);
}

Directory Contents

Dirs: 2 × Files: 10

Name Size Perms Modified Actions
Access DIR
- drwxrwxrwx 2025-09-17 06:52:59
Edit Download
- drwxrwxrwx 2025-09-17 06:52:59
Edit Download
1.07 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
414 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
457 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
1.07 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
666 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
1.26 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
284 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
1.50 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
635 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
1.79 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download

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