appRoot = $appRoot; } /** * @param $file string */ public function addFile($file) { $file = str_replace($this->appRoot, '', $file); $this->files[] = $file; } /** * @return array */ public function getFiles() { return $this->files; } }