email = $email; $this->transaction = $transaction; $this->isPaid = $isPaid; $this->projectName = $projectName; $this->projectId = $projectId; } /** * @return string */ public function getEmail(): string { return $this->email; } /** * @return Transaction */ public function getTransaction(): Transaction { return $this->transaction; } /** * @return bool */ public function getIsPaid(): bool { return $this->isPaid; } /** * @return string */ public function getProjectName(): string { return $this->projectName; } /** * @return string */ public function getProjectId(): string { return $this->projectId; } }