You are here

public function vfsStreamAbstractVisitor::visitBlockDevice in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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

vfsStreamVisitor

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\visitor

Code

public function visitBlockDevice(vfsStreamBlock $block) {
  return $this
    ->visitFile($block);
}