1 | <?php |
||
11 | class Guard |
||
12 | extends BaseGuard |
||
13 | implements GuardInterface |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * @inheritdoc |
||
18 | */ |
||
19 | 4 | public function refresh(AuthFactory $auth) |
|
28 | |||
29 | /** |
||
30 | * Refresh the token |
||
31 | * @param Token $token |
||
32 | * @return Token|boolean New token or false if old token can't be verified |
||
33 | */ |
||
34 | 3 | public function refreshToken(Token $token) |
|
44 | |||
45 | |||
46 | /** |
||
47 | * @inheritdoc |
||
48 | */ |
||
49 | 3 | public function universalUserLogin(AuthFactory $auth) |
|
62 | } |
||
63 |