You are here

public static function vfsStream::enableDotfiles in Zircon Profile 8.0

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

enable dotfiles in directory listings

@since 1.3.0

5 calls to vfsStream::enableDotfiles()
DirectoryIterationTestCase::provideSwitchWithExpectations in vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/DirectoryIterationTestCase.php
DirectoryIterationTestCase::recursiveDirectoryIterationWithDotsEnabled in vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/DirectoryIterationTestCase.php
@test @group issue_50
DirectoryIterationTestCase::tearDown in vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/DirectoryIterationTestCase.php
clean up test environment
vfsStreamContainerIteratorTestCase::provideSwitchWithExpectations in vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamContainerIteratorTestCase.php
vfsStreamContainerIteratorTestCase::tearDown in vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamContainerIteratorTestCase.php
clean up test environment

File

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

Class

vfsStream
Some utility methods for vfsStream.

Namespace

org\bovigo\vfs

Code

public static function enableDotfiles() {
  self::$dotFiles = true;
}