1 | <?php |
||
7 | class ThirdPartyAccountLinked |
||
8 | { |
||
9 | /** @var User */ |
||
10 | private $thirdPartyUser; |
||
11 | |||
12 | /** |
||
13 | * ThirdPartyAccountLinked constructor. |
||
14 | * |
||
15 | * @param User $thirdPartyUser |
||
16 | */ |
||
17 | public function __construct(User $thirdPartyUser) |
||
21 | |||
22 | /** |
||
23 | * @return User |
||
24 | */ |
||
25 | public function getThirdPartyUser() |
||
29 | } |
||
30 |