MontealegreLuis/php-testing-tools

View on GitHub
ewallet/src/Adapters/Doctrine/Ewallet/Types/MemberIdType.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types=1);
/**
 * PHP version 7.4
 *
 * This source file is subject to the license that is bundled with this package in the file LICENSE.
 */

namespace Adapters\Doctrine\Ewallet\Types;

use Ewallet\Memberships\Identifier;
use Ewallet\Memberships\MemberId;

/**
 * UUID fields will be stored as a string in the database and converted back to
 * the MemberId value object when querying.
 */
final class MemberIdType extends UuidType
{
    public function identifier(string $value): Identifier
    {
        return new MemberId($value);
    }

    public function getName(): string
    {
        return 'MemberId';
    }
}