Beispiel #1
0
 /**
  * Move a file to a new location.
  *
  * @param string $path
  * @param string $target
  * @return bool 
  * @static 
  */
 public static function move($path, $target)
 {
     //Method inherited from \Illuminate\Filesystem\Filesystem
     return \October\Rain\Filesystem\Filesystem::move($path, $target);
 }