You appear to be a bot. Output may be restricted
Description
Usage
WP_UnitTestCase::scandir( $dir );
Parameters
- $dir
- ( mixed ) required –
Returns
voidSource
File name: oik-batch/tests/testcase.phpLines:
1 to 8 of 8
function scandir( $dir ) { foreach ( scandir( $dir ) as $path ) { if ( 0 !== strpos( $path, '.' ) && is_dir( $dir . '/' . $path ) ) { $this->matched_dirs[] = $dir . '/' . $path; $this->scandir( $dir . '/' . $path ); } } }View on GitHub