PHP code example of skrepr / id-type

1. Go to this page and download the library: Download skrepr/id-type library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

skrepr / id-type example snippets




declare(strict_types=1);

namespace App\Entity;

use App\ValueObject\UserId;
use Doctrine\ORM\Mapping as ORM;

#[ORM\Entity]
class User
{
    #[ORM\Id]
    #[ORM\Column(type: UserId::TYPE)]
    public readonly UserId $id;
    
    #[ORM\Column(type: 'string')]
    public string $name;
    
    public function __construct(string $name)
    {
        $this->id = UserId::generate();
        $this->name = $name;
    }
}

$newId = UserId::generate();

$userId = new UserId('00000000-0000-0000-0000-000000000000');
// or
$userId = new UserId( \Symfony\Component\Uid\Uuid::v4() );

    #[AutoconfigureTag('skrepr.id-type')]
    class UserIdType extends AbstractUuidType 
    

    public const string TYPE = 'user_id';
    
 php
// config/bundles.php



return [
    Skrepr\IdType\SkreprIdTypeBundle::class => ['all' => true],
];