You appear to be a bot. Output may be restricted
Description
Locates a filesystem node for the parent of the given item
Usage
WP_Filesystem_MockFS::locate_parent_node( $path );
Parameters
- $path
- ( mixed ) required –
Returns
void
Source
File name: wordpress-develop-tests/phpunit/includes/mock-fs.php
Lines:
1 to 4 of 4
private function locate_parent_node( $path ) { $dirname = str_replace( '\\', '/', dirname( $path ) ); return $this->locate_node( trailingslashit( $dirname ) ); }