fileData = $fileData; } /** * @return string|null */ public function getFileName() { return $this->fileData['name'] ?? null; } /** * @return string|null */ public function getTempPath() { return $this->fileData['tmp_name'] ?? null; } /** * @return string */ public function getMimeType() { return $this->fileData['type'] ?? 'application/octet-stream'; } }