uploadedFile->getStream(); } public function moveTo($targetPath): void { $this->uploadedFile->moveTo($targetPath); } public function getSize(): ?int { return $this->uploadedFile->getSize(); } public function getError(): int { return $this->uploadedFile->getError(); } public function getClientFilename(): ?string { return $this->uploadedFile->getClientFilename(); } public function getClientMediaType(): ?string { return $this->uploadedFile->getClientMediaType(); } }