67 lines
3.2 KiB
YAML
67 lines
3.2 KiB
YAML
name: Password
|
|
class_comment: '# * @method static \Illuminate\Contracts\Auth\PasswordBroker broker(string|null
|
|
$name = null)
|
|
|
|
# * @method static string getDefaultDriver()
|
|
|
|
# * @method static void setDefaultDriver(string $name)
|
|
|
|
# * @method static string sendResetLink(array $credentials, \Closure|null $callback
|
|
= null)
|
|
|
|
# * @method static mixed reset(array $credentials, \Closure $callback)
|
|
|
|
# * @method static \Illuminate\Contracts\Auth\CanResetPassword|null getUser(array
|
|
$credentials)
|
|
|
|
# * @method static string createToken(\Illuminate\Contracts\Auth\CanResetPassword
|
|
$user)
|
|
|
|
# * @method static void deleteToken(\Illuminate\Contracts\Auth\CanResetPassword
|
|
$user)
|
|
|
|
# * @method static bool tokenExists(\Illuminate\Contracts\Auth\CanResetPassword
|
|
$user, string $token)
|
|
|
|
# * @method static \Illuminate\Auth\Passwords\TokenRepositoryInterface getRepository()
|
|
|
|
# *
|
|
|
|
# * @see \Illuminate\Auth\Passwords\PasswordBrokerManager
|
|
|
|
# * @see \Illuminate\Auth\Passwords\PasswordBroker'
|
|
dependencies:
|
|
- name: PasswordBroker
|
|
type: class
|
|
source: Illuminate\Contracts\Auth\PasswordBroker
|
|
properties: []
|
|
methods:
|
|
- name: getFacadeAccessor
|
|
visibility: protected
|
|
parameters: []
|
|
comment: "# * @method static \\Illuminate\\Contracts\\Auth\\PasswordBroker broker(string|null\
|
|
\ $name = null)\n# * @method static string getDefaultDriver()\n# * @method static\
|
|
\ void setDefaultDriver(string $name)\n# * @method static string sendResetLink(array\
|
|
\ $credentials, \\Closure|null $callback = null)\n# * @method static mixed reset(array\
|
|
\ $credentials, \\Closure $callback)\n# * @method static \\Illuminate\\Contracts\\\
|
|
Auth\\CanResetPassword|null getUser(array $credentials)\n# * @method static string\
|
|
\ createToken(\\Illuminate\\Contracts\\Auth\\CanResetPassword $user)\n# * @method\
|
|
\ static void deleteToken(\\Illuminate\\Contracts\\Auth\\CanResetPassword $user)\n\
|
|
# * @method static bool tokenExists(\\Illuminate\\Contracts\\Auth\\CanResetPassword\
|
|
\ $user, string $token)\n# * @method static \\Illuminate\\Auth\\Passwords\\TokenRepositoryInterface\
|
|
\ getRepository()\n# *\n# * @see \\Illuminate\\Auth\\Passwords\\PasswordBrokerManager\n\
|
|
# * @see \\Illuminate\\Auth\\Passwords\\PasswordBroker\n# */\n# class Password\
|
|
\ extends Facade\n# {\n# /**\n# * Constant representing a successfully sent reminder.\n\
|
|
# *\n# * @var string\n# */\n# const RESET_LINK_SENT = PasswordBroker::RESET_LINK_SENT;\n\
|
|
# \n# /**\n# * Constant representing a successfully reset password.\n# *\n# *\
|
|
\ @var string\n# */\n# const PASSWORD_RESET = PasswordBroker::PASSWORD_RESET;\n\
|
|
# \n# /**\n# * Constant representing the user not found response.\n# *\n# * @var\
|
|
\ string\n# */\n# const INVALID_USER = PasswordBroker::INVALID_USER;\n# \n# /**\n\
|
|
# * Constant representing an invalid token.\n# *\n# * @var string\n# */\n# const\
|
|
\ INVALID_TOKEN = PasswordBroker::INVALID_TOKEN;\n# \n# /**\n# * Constant representing\
|
|
\ a throttled reset attempt.\n# *\n# * @var string\n# */\n# const RESET_THROTTLED\
|
|
\ = PasswordBroker::RESET_THROTTLED;\n# \n# /**\n# * Get the registered name of\
|
|
\ the component.\n# *\n# * @return string"
|
|
traits:
|
|
- Illuminate\Contracts\Auth\PasswordBroker
|
|
interfaces: []
|