File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed
Authentication/RememberMe Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -23,24 +23,32 @@ interface TokenProviderInterface
23
23
/**
24
24
* Loads the active token for the given series.
25
25
*
26
+ * @return PersistentTokenInterface
27
+ *
26
28
* @throws TokenNotFoundException if the token is not found
27
29
*/
28
- public function loadTokenBySeries (string $ series ): PersistentTokenInterface ;
30
+ public function loadTokenBySeries (string $ series );
29
31
30
32
/**
31
33
* Deletes all tokens belonging to series.
34
+ *
35
+ * @return void
32
36
*/
33
- public function deleteTokenBySeries (string $ series ): void ;
37
+ public function deleteTokenBySeries (string $ series );
34
38
35
39
/**
36
40
* Updates the token according to this data.
37
41
*
42
+ * @return void
43
+ *
38
44
* @throws TokenNotFoundException if the token is not found
39
45
*/
40
- public function updateToken (string $ series , #[\SensitiveParameter] string $ tokenValue , \DateTime $ lastUsed ): void ;
46
+ public function updateToken (string $ series , #[\SensitiveParameter] string $ tokenValue , \DateTime $ lastUsed );
41
47
42
48
/**
43
49
* Creates a new token.
50
+ *
51
+ * @return void
44
52
*/
45
- public function createNewToken (PersistentTokenInterface $ token ): void ;
53
+ public function createNewToken (PersistentTokenInterface $ token );
46
54
}
You can’t perform that action at this time.
0 commit comments