File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/symfony/uid
Upload
[..]
CHANGELOG.md (1.52 KB)
Edit
Rename
Del
Command/
Rename
Del
Exception/
Rename
Del
Factory/
Rename
Del
LICENSE (1.04 KB)
Edit
Rename
Del
NilUlid.php (383 B)
Edit
Rename
Del
README.md (604 B)
Edit
Rename
Del
Ulid.php (6.92 KB)
Edit
Rename
Del
UuidV3.php (592 B)
Edit
Rename
Del
UuidV7.php (6.19 KB)
Edit
Rename
Del
composer.json (922 B)
Edit
Rename
Del
Edit: UuidV3.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 v3 UUID contains an MD5 hash of another UUID and a name. * * Use Uuid::v3() to compute one. * * @author Grégoire Pineau <lyrixx@lyrixx.info> */ class UuidV3 extends Uuid { protected const TYPE = 3; public function __construct(string $uuid) { parent::__construct($uuid, true); } }
Simpan