public function MissingAdapter::copy in Flysystem 7
Same name and namespace in other branches
- 8 src/Flysystem/Adapter/MissingAdapter.php \Drupal\flysystem\Flysystem\Adapter\MissingAdapter::copy()
- 3.x src/Flysystem/Adapter/MissingAdapter.php \Drupal\flysystem\Flysystem\Adapter\MissingAdapter::copy()
- 2.0.x src/Flysystem/Adapter/MissingAdapter.php \Drupal\flysystem\Flysystem\Adapter\MissingAdapter::copy()
- 3.0.x src/Flysystem/Adapter/MissingAdapter.php \Drupal\flysystem\Flysystem\Adapter\MissingAdapter::copy()
File
- src/
Flysystem/ Adapter/ MissingAdapter.php, line 21 - Contains \Drupal\flysystem\Flysystem\Adapter\MissingAdapter.
Class
- MissingAdapter
- An adapter used when a plugin is missing. It fails at everything.
Namespace
Drupal\flysystem\Flysystem\AdapterCode
public function copy($path, $newpath) {
return FALSE;
}