Exemple #1
0
 /**
  * @param string $sourcePath
  * @param string $targetPath
  */
 public function rename($sourcePath, $targetPath)
 {
     $this->_adapter->rename($sourcePath, $targetPath);
     foreach ($this->_secondaryList as $secondary) {
         $secondary->rename($sourcePath, $targetPath);
     }
 }