File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,27 @@ public function setRequest(Request $request)
56
56
57
57
return parent ::setRequest ($ request );
58
58
}
59
+
60
+ /**
61
+ * Get a unique identifier for the auth session value.
62
+ *
63
+ * @return string
64
+ */
65
+ public function getName ()
66
+ {
67
+ return 'login_ ' .$ this ->name .'_ ' .sha1 (parent ::class);
68
+ }
59
69
70
+ /**
71
+ * Get the name of the cookie used to store the "recaller".
72
+ *
73
+ * @return string
74
+ */
75
+ public function getRecallerName ()
76
+ {
77
+ return 'remember_ ' .$ this ->name .'_ ' .sha1 (parent ::class);
78
+ }
79
+
60
80
/**
61
81
* Reset the state of current class instance.
62
82
*
@@ -69,5 +89,6 @@ protected function reset()
69
89
$ this ->viaRemember = false ;
70
90
$ this ->loggedOut = false ;
71
91
$ this ->tokenRetrievalAttempted = false ;
92
+ $ this ->recallAttempted = false ;
72
93
}
73
94
}
You can’t perform that action at this time.
0 commit comments