1 | <?php |
||
20 | class UserContext implements Context |
||
21 | { |
||
22 | /** |
||
23 | * @var SharedStorageInterface |
||
24 | */ |
||
25 | private $sharedStorage; |
||
26 | |||
27 | /** |
||
28 | * @param SharedStorageInterface $sharedStorage |
||
29 | */ |
||
30 | public function __construct(SharedStorageInterface $sharedStorage) |
||
34 | |||
35 | /** |
||
36 | * @Transform I |
||
37 | */ |
||
38 | public function getLoggedUser() |
||
42 | } |
||
43 |