path = $path; $this->localBasePath = $localBasePath; $this->remoteBasePath = $remoteBasePath; } /** * @return string */ public function getLocalPath() { return "{$this->localBasePath}/{$this->path}"; } /** * @return string */ public function getRemotePath() { return "{$this->remoteBasePath}/{$this->path}"; } /** * @return string */ public function getPath() { return $this->path; } }