Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
MemberId
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace App\Trip\Domain\ValueObject;
6
7use App\Shared\Domain\ValueObject\Uuid;
8
9/**
10 * Reference to a member User (Identity context), held by id only to keep the
11 * Trip context decoupled from Identity. Mirrors OwnerId — both are User ids,
12 * but a member is not the owner, so the intent stays explicit per context.
13 */
14final class MemberId extends Uuid
15{
16}