| 1 | <?php |
||
| 9 | final class ExtractUniqueKeyFromSession implements ExtractUniqueKeyFromSessionInterface |
||
| 10 | { |
||
| 11 | const ENTROPY = 32; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | private $uniqueIdKey; |
||
| 17 | |||
| 18 | public function __construct(string $uniqueIdKey) |
||
| 22 | 12 | ||
| 23 | public function __invoke(SessionInterface $session) : string |
||
| 37 | } |
||
| 38 |