Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class AnonymousUser implements CanInteract |
||
10 | { |
||
11 | use Interact; |
||
12 | |||
13 | private $identifier; |
||
14 | private $interactionRepository; |
||
15 | |||
16 | public function __construct(string $identifier) |
||
20 | } |
||
21 | |||
22 | public function key(): string |
||
23 | { |
||
24 | return 'cookie_user_session_id'; |
||
25 | } |
||
26 | |||
27 | public function identifier():string |
||
30 | } |
||
31 | |||
32 | public function transfer(RegisteredUser $registeredUser) |
||
37 |