コード例 #1
0
ファイル: Filesystem.php プロジェクト: cargomedia/cm
 /**
  * @param string $sourcePath
  * @param string $targetPath
  */
 public function copy($sourcePath, $targetPath)
 {
     $this->_adapter->copy($sourcePath, $targetPath);
     foreach ($this->_secondaryList as $secondary) {
         $secondary->copy($sourcePath, $targetPath);
     }
 }