コード例 #1
0
ファイル: _ide_helper.php プロジェクト: whplay/ohmate-shop
 /**
  * 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);
 }