| 1 | <?php |
||
| 10 | final class SubscriptionTokenAssigner implements SubscriptionTokenAssignerInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var RandomnessGeneratorInterface |
||
| 14 | */ |
||
| 15 | private $generator; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param RandomnessGeneratorInterface $generator |
||
| 19 | */ |
||
| 20 | public function __construct(RandomnessGeneratorInterface $generator) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param SubscriptionInterface $subscription |
||
| 27 | */ |
||
| 28 | public function assignTokenValue(SubscriptionInterface $subscription): void |
||
| 32 | } |
||
| 33 |