public function vfsStreamAbstractVisitor::visitBlockDevice in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/mikey179/vfsStream/src/main/php/org/bovigo/vfs/visitor/vfsStreamAbstractVisitor.php \org\bovigo\vfs\visitor\vfsStreamAbstractVisitor::visitBlockDevice()
visit a block device and process it
Parameters
vfsStreamBlock $block:
Return value
Overrides vfsStreamVisitor::visitBlockDevice
1 call to vfsStreamAbstractVisitor::visitBlockDevice()
- vfsStreamAbstractVisitor::visit in vendor/
mikey179/ vfsStream/ src/ main/ php/ org/ bovigo/ vfs/ visitor/ vfsStreamAbstractVisitor.php - visit a content and process it
2 methods override vfsStreamAbstractVisitor::visitBlockDevice()
- vfsStreamPrintVisitor::visitBlockDevice in vendor/
mikey179/ vfsStream/ src/ main/ php/ org/ bovigo/ vfs/ visitor/ vfsStreamPrintVisitor.php - visit a block device and process it
- vfsStreamStructureVisitor::visitBlockDevice in vendor/
mikey179/ vfsStream/ src/ main/ php/ org/ bovigo/ vfs/ visitor/ vfsStreamStructureVisitor.php - visit a block device and process it
File
- vendor/
mikey179/ vfsStream/ src/ main/ php/ org/ bovigo/ vfs/ visitor/ vfsStreamAbstractVisitor.php, line 60
Class
- vfsStreamAbstractVisitor
- Abstract base class providing an implementation for the visit() method.
Namespace
org\bovigo\vfs\visitorCode
public function visitBlockDevice(vfsStreamBlock $block) {
return $this
->visitFile($block);
}