customer; } public function setCustomer(Customer $customer): TimesheetMultiUpdateDTO { $this->customer = $customer; return $this; } public function getProject(): ?Project { return $this->project; } public function setProject(Project $project): TimesheetMultiUpdateDTO { $this->project = $project; return $this; } public function getActivity(): ?Activity { return $this->activity; } public function setActivity(Activity $activity): TimesheetMultiUpdateDTO { $this->activity = $activity; return $this; } /** * @return Tag[]|ArrayCollection|iterable */ public function getTags(): iterable { return $this->tags; } public function setTags(iterable $tags): TimesheetMultiUpdateDTO { $this->tags = $tags; return $this; } public function getUser(): ?User { return $this->user; } public function setUser(User $user): TimesheetMultiUpdateDTO { $this->user = $user; return $this; } public function isExported(): ?bool { return $this->exported; } public function setExported(bool $exported): TimesheetMultiUpdateDTO { $this->exported = $exported; return $this; } public function isReplaceTags(): bool { return $this->replaceTags; } public function setReplaceTags(bool $replaceTags): TimesheetMultiUpdateDTO { $this->replaceTags = $replaceTags; return $this; } }