public function MissingAdapter::update in Flysystem 7
Same name and namespace in other branches
- 8 src/Flysystem/Adapter/MissingAdapter.php \Drupal\flysystem\Flysystem\Adapter\MissingAdapter::update()
- 3.x src/Flysystem/Adapter/MissingAdapter.php \Drupal\flysystem\Flysystem\Adapter\MissingAdapter::update()
- 2.0.x src/Flysystem/Adapter/MissingAdapter.php \Drupal\flysystem\Flysystem\Adapter\MissingAdapter::update()
- 3.0.x src/Flysystem/Adapter/MissingAdapter.php \Drupal\flysystem\Flysystem\Adapter\MissingAdapter::update()
File
- src/
Flysystem/ Adapter/ MissingAdapter.php, line 105 - 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 update($path, $contents, Config $config) {
return FALSE;
}