Пример #1
0
 /**
  * Copy a file to a new location.
  *
  * @param string $from
  * @param string $to
  * @return bool 
  * @static 
  */
 public static function copy($from, $to)
 {
     return \Illuminate\Filesystem\FilesystemAdapter::copy($from, $to);
 }