uploadedFile = $uploadedFile; } public function getTmpName() { return $this->uploadedFile->getPathname(); } public function getName() { return $this->uploadedFile->getClientOriginalName(); } public function getSize() { return $this->uploadedFile->getClientSize(); } public function getType() { return $this->uploadedFile->getMimeType(); } public function getError() { return $this->uploadedFile->getError(); } /** * {@inheritDoc} */ public function isUploadedFile() { return is_uploaded_file($this->uploadedFile->getPathname()); } }