Exemple #1
0
 /**
  * @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);
     }
 }