| 1 | <?php namespace Nord\Lumen\FileManager; | ||
| 6 | class IdGenerator implements IdGeneratorContract | ||
| 7 | { | ||
| 8 | |||
| 9 | /** | ||
| 10 | * @var ShortId | ||
| 11 | */ | ||
| 12 | private $generator; | ||
| 13 | |||
| 14 | |||
| 15 | /** | ||
| 16 | * IdGenerator constructor. | ||
| 17 | */ | ||
| 18 | public function __construct() | ||
| 22 | |||
| 23 | |||
| 24 | /** | ||
| 25 | * @inheritdoc | ||
| 26 | */ | ||
| 27 | public function generate() | ||
| 31 | } | ||
| 32 |