WP_Translation_File::__construct()protectedWP 6.5.0

Constructor.

Method of the class: WP_Translation_File{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->__construct( $file );
$file(string) (required)
File to load.

Changelog

Since 6.5.0 Introduced.

WP_Translation_File::__construct() code WP 6.7.1

protected function __construct( string $file ) {
	$this->file = $file;
}