You are here

public function vfsStreamDirectory::getIterator in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/mikey179/vfsStream/src/main/php/org/bovigo/vfs/vfsStreamDirectory.php \org\bovigo\vfs\vfsStreamDirectory::getIterator()

returns iterator for the children

Return value

vfsStreamContainerIterator

1 method overrides vfsStreamDirectory::getIterator()
DotDirectory::getIterator in vendor/mikey179/vfsStream/src/main/php/org/bovigo/vfs/DotDirectory.php
returns iterator for the children

File

vendor/mikey179/vfsStream/src/main/php/org/bovigo/vfs/vfsStreamDirectory.php, line 248

Class

vfsStreamDirectory
Directory container.

Namespace

org\bovigo\vfs

Code

public function getIterator() {
  return new vfsStreamContainerIterator($this->children);
}