. */ namespace SP\Http; /** * Class Message * * @package SP\Http */ final class Message { protected int $type = 0; protected ?string $description = null; protected ?string $hint = null; public function getType(): int { return $this->type; } public function setType(int $type): void { $this->type = $type; } public function getDescription(): ?string { return $this->description; } public function setDescription(string $description): void { $this->description = $description; } public function getHint(): ?string { return $this->hint; } public function setHint(string $hint): void { $this->hint = $hint; } }