public function MissingAdapter::listContents in Flysystem 7
Same name and namespace in other branches
- 8 src/Flysystem/Adapter/MissingAdapter.php \Drupal\flysystem\Flysystem\Adapter\MissingAdapter::listContents()
- 3.x src/Flysystem/Adapter/MissingAdapter.php \Drupal\flysystem\Flysystem\Adapter\MissingAdapter::listContents()
- 2.0.x src/Flysystem/Adapter/MissingAdapter.php \Drupal\flysystem\Flysystem\Adapter\MissingAdapter::listContents()
- 3.0.x src/Flysystem/Adapter/MissingAdapter.php \Drupal\flysystem\Flysystem\Adapter\MissingAdapter::listContents()
File
- src/
Flysystem/ Adapter/ MissingAdapter.php, line 49 - 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 listContents($directory = '', $recursive = FALSE) {
return array();
}