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