1 | <?php |
||
8 | class Identity implements Authenticatable |
||
9 | { |
||
10 | public $socialite; |
||
11 | |||
12 | public $name; |
||
13 | public $email; |
||
14 | public $avatar; |
||
15 | |||
16 | public function __construct(User $user) |
||
23 | |||
24 | public function getAuthIdentifier() |
||
28 | |||
29 | public function getAuthIdentifierName() |
||
33 | |||
34 | public function getAuthPassword() |
||
37 | |||
38 | public function getRememberToken() |
||
41 | |||
42 | public function getRememberTokenName() |
||
45 | |||
46 | public function setRememberToken($value) |
||
49 | } |
||
50 |