20250721 1.2 Бета 1

This commit is contained in:
2025-07-21 17:51:37 +03:00
parent 2c3ea12fc1
commit 04f6849ff4
12 changed files with 1162 additions and 147 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace goodboyalex\php_components_pack\traits\GUID;
use goodboyalex\php_components_pack\types\GUID;
/**
* Часть кода класса GUID, отвечающая за реализацию интерфейса IDuplicated.
*
* @author Александр Бабаев
* @package php_components_pack
* @version 1.0
* @since 1.2
*/
trait GUIDDuplicatedTrait
{
/**
* @inheritDoc
*/
public function Duplicate (): object
{
return GUID::Parse($this->Value);
}
}