Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| TripId | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace App\Expense\Domain\ValueObject; |
| 6 | |
| 7 | use App\Shared\Domain\ValueObject\Uuid; |
| 8 | |
| 9 | /** |
| 10 | * Reference to the Trip this expense belongs to, held by id only to keep the |
| 11 | * Expense context decoupled from the Trip domain (mirrors Trip's OwnerId). |
| 12 | */ |
| 13 | final class TripId extends Uuid |
| 14 | { |
| 15 | } |