Пример #1
0
 /**
  * Moves a file
  *
  * @param string $src The path to the source file
  * @param string $dest The path to the destination file
  *
  * @return boolean The success of the operation
  */
 public function move($src, $dest)
 {
     return $this->adapter->move($src, $dest);
 }