protected function FlysystemBridge::getFilesystem in Flysystem 8
Same name and namespace in other branches
- 7 src/FlysystemBridge.php \Drupal\flysystem\FlysystemBridge::getFilesystem()
- 3.x 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;
}