protected function FlysystemBridge::getFilesystem in Flysystem 3.x
Same name and namespace in other branches
- 8 src/FlysystemBridge.php \Drupal\flysystem\FlysystemBridge::getFilesystem()
- 7 src/FlysystemBridge.php \Drupal\flysystem\FlysystemBridge::getFilesystem()
- 2.0.x src/FlysystemBridge.php \Drupal\flysystem\FlysystemBridge::getFilesystem()
- 3.0.x src/FlysystemBridge.php \Drupal\flysystem\FlysystemBridge::getFilesystem()
File
- src/
FlysystemBridge.php, line 113
Class
- FlysystemBridge
- An adapter for Flysystem to StreamWrapperInterface.
Namespace
Drupal\flysystemCode
protected function getFilesystem() {
if (!isset($this->filesystem)) {
$this->filesystem = $this
->getFilesystemForScheme($this
->getProtocol());
}
return $this->filesystem;
}