88 lines
2 KiB
YAML
88 lines
2 KiB
YAML
name: Authenticatable
|
|
class_comment: null
|
|
dependencies: []
|
|
properties:
|
|
- name: authPasswordName
|
|
visibility: protected
|
|
comment: '# * The column name of the password field using during authentication.
|
|
|
|
# *
|
|
|
|
# * @var string'
|
|
- name: rememberTokenName
|
|
visibility: protected
|
|
comment: '# * The column name of the "remember me" token.
|
|
|
|
# *
|
|
|
|
# * @var string'
|
|
methods:
|
|
- name: getAuthIdentifierName
|
|
visibility: public
|
|
parameters: []
|
|
comment: "# * The column name of the password field using during authentication.\n\
|
|
# *\n# * @var string\n# */\n# protected $authPasswordName = 'password';\n# \n\
|
|
# /**\n# * The column name of the \"remember me\" token.\n# *\n# * @var string\n\
|
|
# */\n# protected $rememberTokenName = 'remember_token';\n# \n# /**\n# * Get the\
|
|
\ name of the unique identifier for the user.\n# *\n# * @return string"
|
|
- name: getAuthIdentifier
|
|
visibility: public
|
|
parameters: []
|
|
comment: '# * Get the unique identifier for the user.
|
|
|
|
# *
|
|
|
|
# * @return mixed'
|
|
- name: getAuthIdentifierForBroadcasting
|
|
visibility: public
|
|
parameters: []
|
|
comment: '# * Get the unique broadcast 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|null'
|
|
- 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: []
|