1 | <?php |
||
5 | class UserId |
||
6 | { |
||
7 | /** @var int|null */ |
||
8 | private $userId; |
||
9 | |||
10 | 4 | public function __construct(?int $userId) |
|
14 | |||
15 | /** |
||
16 | * スカラー値を取得 |
||
17 | */ |
||
18 | 3 | public function getValue(): ?int |
|
22 | |||
23 | /** |
||
24 | * 同じIDかどうか判定 |
||
25 | * @param UserId $userId |
||
26 | * @return bool |
||
27 | */ |
||
28 | 1 | public function equals(UserId $userId): bool |
|
32 | } |