コード例 #1
0
 /**
  * @param string $localPath
  * @param string $remoteName
  */
 private function downloadFile($localPath, $remoteName)
 {
     if ($this->debug) {
         $this->systemLogger->log('target ' . $this->name . ': downloadFile');
     }
     $this->ftpService->download($localPath, $remoteName);
 }
コード例 #2
0
 /**
  * @param string $localPath
  * @param string $remoteName
  */
 private function downloadFile($localPath, $remoteName)
 {
     if ($this->debug) {
         $this->systemLogger->log('storage ' . $this->name . ': downloadFile $localPath: ' . $localPath . ', $remoteName: ' . $remoteName);
     }
     $this->ftpService->download($localPath, $remoteName);
 }