This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Uid/UuidV5.php
Christian Flothmann bc20e633f3 Merge branch '5.1' into 5.2
* 5.1:
  [Uid] Hardcode UuidV3 & UuidV5 TYPE conditional constants
  [Uid] Use the Uuid constructor when reconstructing an Ulid from its RFC-4122 version
  stop using void in test files
2021-01-05 20:21:40 +01:00

27 lines
518 B
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Uid;
/**
* A v5 UUID contains a SHA1 hash of another UUID and a name.
*
* Use Uuid::v5() to compute one.
*
* @experimental in 5.2
*
* @author Grégoire Pineau <lyrixx@lyrixx.info>
*/
class UuidV5 extends Uuid
{
protected const TYPE = 5;
}