My Project
Identifier.php
[詳解]
1 <?php
2 declare(strict_types=1);
3 
5 
6 abstract class Identifier
7 {
8  abstract protected function validate(): void;
9 
10  public function equals(self $id): bool
11  {
12  if (!$id instanceof self) {
13  return false;
14  }
15  return $this->id === $id;
16  }
17 }