. */ namespace SP\Domain\Common\Models; /** * Class Item */ class Item extends Model implements ItemWithIdAndNameModel { protected ?int $id = null; protected ?string $name = null; public function getId(): ?int { return $this->id; } public function getName(): ?string { return $this->name; } }