budget = $budget; return $this; } /** * @return float */ public function getBudget() { return $this->budget; } /** * @param int $seconds * @return self */ public function setTimeBudget(?int $seconds) { $this->timeBudget = $seconds; return $this; } public function getTimeBudget(): int { return $this->timeBudget; } }