You are here

public function vfsStreamDirectory::getChildren 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::getChildren()

returns a list of children for this directory

Return value

vfsStreamContent[]

Overrides vfsStreamContainer::getChildren

File

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

Class

vfsStreamDirectory
Directory container.

Namespace

org\bovigo\vfs

Code

public function getChildren() {
  return array_values($this->children);
}