| 1 | <?php declare(strict_types=1); |
||
| 7 | final class RandomBytes implements SessionIdInterface |
||
| 8 | { |
||
| 9 | public const DEFAULT_LENGTH = 32; |
||
| 10 | |||
| 11 | /** @var int */ |
||
| 12 | private $length; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param int $length |
||
| 16 | */ |
||
| 17 | 94 | public function __construct(int $length = self::DEFAULT_LENGTH) |
|
| 21 | |||
| 22 | 79 | public function generate(): string |
|
| 26 | } |
||
| 27 |