Example #1
0
 /**
  * Create a hard link to the target file or directory.
  *
  * @param string $target
  * @param string $link
  *
  * @return void
  * @static
  */
 public static function link($target, $link)
 {
     \Illuminate\Filesystem\Filesystem::link($target, $link);
 }