File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,36 @@ public function getReminderEmail()
85
85
return $ this ->email ;
86
86
}
87
87
88
+ /**
89
+ * Get the token value for the "remember me" session.
90
+ *
91
+ * @return string
92
+ */
93
+ public function getRememberToken ()
94
+ {
95
+ return $ this ->rememberToken ;
96
+ }
97
+
98
+ /**
99
+ * Set the token value for the "remember me" session.
100
+ *
101
+ * @param string $value
102
+ * @return void
103
+ */
104
+ public function setRememberToken ($ value )
105
+ {
106
+ $ this ->rememberToken = $ value ;
107
+ }
108
+
109
+ /**
110
+ * Get the column name for the "remember me" token.
111
+ *
112
+ * @return string
113
+ */
114
+ public function getRememberTokenName () {
115
+ return 'remember_token ' ;
116
+ }
117
+
88
118
protected function getDateFormat ()
89
119
{
90
120
return 'l jS \of F Y h:i:s A ' ;
You can’t perform that action at this time.
0 commit comments