Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
OwnerId
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 the owning User aggregate (Identity context), held by id only to
11 * keep the Trip context decoupled from Identity.
12 */
13final class OwnerId extends Uuid
14{
15}