Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 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) |
||
17 | { |
||
18 | $this->identifier = $identifier; |
||
19 | $this->interactionRepository = app(InteractionRepository::class); |
||
20 | } |
||
21 | |||
22 | public function key(): string |
||
25 | } |
||
26 | |||
27 | public function identifier():string |
||
30 | } |
||
31 | |||
32 | public function transfer(RegisteredUser $registeredUser) |
||
37 |