TYPE; } public function __construct(int $currentValue, int $maxValue) { $this->currentValue = $currentValue; $this->maxValue = $maxValue; } public function getMessage(): string { return "value must be lower then " . $this->maxValue; } }