platform/api/laravel/Contracts/Auth/Authenticatable.yaml

67 lines
1.3 KiB
YAML
Raw Normal View History

2024-09-02 17:44:11 +00:00
name: Authenticatable
class_comment: null
dependencies: []
properties: []
methods:
- name: getAuthIdentifierName
visibility: public
parameters: []
comment: '# * Get the name of the unique identifier for the user.
# *
# * @return string'
- name: getAuthIdentifier
visibility: public
parameters: []
comment: '# * Get the unique identifier for the user.
# *
# * @return mixed'
- name: getAuthPasswordName
visibility: public
parameters: []
comment: '# * Get the name of the password attribute for the user.
# *
# * @return string'
- name: getAuthPassword
visibility: public
parameters: []
comment: '# * Get the password for the user.
# *
# * @return string'
- name: getRememberToken
visibility: public
parameters: []
comment: '# * Get the token value for the "remember me" session.
# *
# * @return string'
- name: setRememberToken
visibility: public
parameters:
- name: value
comment: '# * Set the token value for the "remember me" session.
# *
# * @param string $value
# * @return void'
- name: getRememberTokenName
visibility: public
parameters: []
comment: '# * Get the column name for the "remember me" token.
# *
# * @return string'
traits: []
interfaces: []