1 | <?php namespace Limoncello\Auth\Authentication; |
||
25 | class AccountManager implements AccountManagerInterface |
||
26 | { |
||
27 | /** |
||
28 | * @var null|AccountInterface |
||
29 | */ |
||
30 | private $account = null; |
||
31 | |||
32 | /** |
||
33 | * @inheritdoc |
||
34 | */ |
||
35 | 1 | public function getAccount() |
|
39 | |||
40 | /** |
||
41 | * @inheritdoc |
||
42 | */ |
||
43 | 1 | public function setAccount(AccountInterface $account) |
|
49 | } |
||
50 |