setterVal; } public function setSetterVal(int $value): void { $this->setterVal = $value; } public function withWitherVal(int $value): self { $this->witherVal = $value; return $this; } public function getWitherVal(): int { return $this->witherVal; } }