public function vfsStreamContainerIteratorTestCase::provideSwitchWithExpectations in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamContainerIteratorTestCase.php \org\bovigo\vfs\vfsStreamContainerIteratorTestCase::provideSwitchWithExpectations()
Return value
array
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ vfsStreamContainerIteratorTestCase.php, line 64
Class
Namespace
org\bovigo\vfsCode
public function provideSwitchWithExpectations() {
return array(
array(
function () {
vfsStream::disableDotfiles();
},
array(),
),
array(
function () {
vfsStream::enableDotfiles();
},
array(
'.',
'..',
),
),
);
}