files = new ArrayCollection(); } public function getId() { return $this->id; } public function setTitle($title) { $this->title = $title; } public function getTitle() { return $this->title; } public function setFilePath($filePath) { $this->filePath = $filePath; } public function getFilePath() { return $this->filePath; } public function getFiles() { return $this->files; } public function addFile(File $file) { $this->files[] = $file; } }