1 | <?php |
||
13 | class TokenableEntity implements TokenableEntityInterface |
||
14 | { |
||
15 | /** @var string */ |
||
16 | protected $recipient; |
||
17 | |||
18 | /** @var array */ |
||
19 | protected $data; |
||
20 | |||
21 | 2 | public function __construct(string $recipient, array $data = []) |
|
26 | |||
27 | 1 | public function getTokenRecipient(): string |
|
31 | |||
32 | 1 | public function getTokenData(): array |
|
36 | } |
||
37 |