POMO_FileReader::POMO_FileReader()publicWP 1.0

Deprecated from version 5.4.0. It is no longer supported and can be removed in future releases. Use __construct() instead.

PHP4 constructor.

Method of the class: POMO_FileReader{}

No Hooks.

Return

null. Nothing (null).

Usage

$POMO_FileReader = new POMO_FileReader();
$POMO_FileReader->POMO_FileReader( $filename );
$filename (required)
-

Notes

Changelog

Deprecated since 5.4.0 Use __construct() instead.

POMO_FileReader::POMO_FileReader() code WP 6.5.2

public function POMO_FileReader( $filename ) {
	_deprecated_constructor( self::class, '5.4.0', static::class );
	self::__construct( $filename );
}