thephpleague / flysystem-sftp

[READ-ONLY SUBSPLIT] Flysystem Adapter for SFTP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

API flysystem->copy returns null on success

olivier-novalend opened this issue · comments

Hi,

if I dump($this->filesystem->copy($object['path'], str_replace($this->directoryGet, $this->directoryArchive, $object['path'])));, the output of the dump is null, not true (as indicated in the doc https://flysystem.thephpleague.com/v1/docs/usage/filesystem-api/).

The copy works well though.

But it is a problem because I can’t use the response of my copy in a if, ie
if($this->filesystem->copy($object['path'], str_replace($this->directoryGet, $this->directoryArchive, $object['path']))) {}

@olivier-novalend what version do you have installed?

	"league/flysystem-bundle": "^2.0",
	"league/flysystem-sftp": "^2.2",

then what you're seeing is correct, you're linking the old docs, the new ones are here: https://flysystem.thephpleague.com/v2/docs/usage/filesystem-api/#filesystemwritercopy

Oh I see…
Thanks