public function __construct(Filesystem $filesystem, File $source, File $target)
 {
     parent::__construct($filesystem);
     $this->source = $source;
     $this->destination = $target;
 }
示例#2
0
 public function __construct(Filesystem $filesystem, File $file)
 {
     parent::__construct($filesystem);
     $this->file = $file;
 }