WP_Filesystem_Direct::__construct()publicWP 2.5.0

Constructor.

Method of the class: WP_Filesystem_Direct{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Filesystem_Direct = new WP_Filesystem_Direct();
$WP_Filesystem_Direct->__construct( $arg );
$arg(mixed) (required)
Not used.

Changelog

Since 2.5.0 Introduced.

WP_Filesystem_Direct::__construct() code WP 6.5.2

public function __construct( $arg ) {
	$this->method = 'direct';
	$this->errors = new WP_Error();
}