user; } public function getBudgetType(): ?bool { return $this->budgetType; } /** * @internal */ public function setBudgetType(?bool $budgetType): void { $this->budgetType = $budgetType; } public function isIncludeWithoutBudget(): bool { return $this->budgetType === false; } public function isIncludeWithBudget(): bool { return $this->budgetType === true; } public function isIncludeNoWork(): bool { return $this->includeNoWork; } public function setIncludeNoWork(bool $includeNoWork): void { $this->includeNoWork = $includeNoWork; } public function getCustomer(): ?Customer { return $this->customer; } public function setCustomer(Customer $customer): void { $this->customer = $customer; } public function getToday(): DateTime { return $this->today; } }