googleanalytics
/
lib
/
analytics-admin
/
vendor
/
ramsey
/
uuid
/
src
/
Builder
/
DefaultUuidBuilder.php
BuilderCollection.php
3 years ago
DefaultUuidBuilder.php
3 years ago
DegradedUuidBuilder.php
3 years ago
FallbackBuilder.php
3 years ago
UuidBuilderInterface.php
3 years ago
DefaultUuidBuilder.php
27 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * This file is part of the ramsey/uuid library |
| 5 | * |
| 6 | * For the full copyright and license information, please view the LICENSE |
| 7 | * file that was distributed with this source code. |
| 8 | * |
| 9 | * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com> |
| 10 | * @license http://opensource.org/licenses/MIT MIT |
| 11 | */ |
| 12 | |
| 13 | declare(strict_types=1); |
| 14 | |
| 15 | namespace Ramsey\Uuid\Builder; |
| 16 | |
| 17 | use Ramsey\Uuid\Rfc4122\UuidBuilder as Rfc4122UuidBuilder; |
| 18 | |
| 19 | /** |
| 20 | * @deprecated Transition to {@see Rfc4122UuidBuilder}. |
| 21 | * |
| 22 | * @psalm-immutable |
| 23 | */ |
| 24 | class DefaultUuidBuilder extends Rfc4122UuidBuilder |
| 25 | { |
| 26 | } |
| 27 |