class POMO_CachedIntFileReader {}

In this article

Reads the contents of the file in the beginning.

Methods

NameDescription
POMO_CachedIntFileReader::__constructPHP5 constructor.
POMO_CachedIntFileReader::POMO_CachedIntFileReaderPHP4 constructor. — deprecated

Source

class POMO_CachedIntFileReader extends POMO_CachedFileReader {
	/**
	 * PHP5 constructor.
	 */
	public function __construct( $filename ) {
		parent::__construct( $filename );
	}

	/**
	 * PHP4 constructor.
	 *
	 * @deprecated 5.4.0 Use __construct() instead.
	 *
	 * @see POMO_CachedIntFileReader::__construct()
	 */
	public function POMO_CachedIntFileReader( $filename ) {
		_deprecated_constructor( self::class, '5.4.0', static::class );
		self::__construct( $filename );
	}
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.