file = $file; } /** * @return string */ public function getId() { $file = $this->file->getFilename(); return substr($file, 0, strpos($file, '.')); } /** * @return string */ public function getName() { return basename($this->getFilename()); } /** * @return string */ public function getFilename(): string { return $this->file->getRealPath(); } }