document_id = $document_id; $this->file = $file; $this->file_type = $file_type; } /** * @return int|null */ public function getDocumentId(): ?int { return $this->document_id; } /** * @return string|null */ public function getFile(): ?string { return $this->file; } /** * @return string|null */ public function getFileType(): ?string { return $this->file_type; } }