/**
	 * Returns the singleton instance.
	 * @since 3.3.2
	 */
	public static function get_instance() {
		if ( self::$instance === NULL ) {
			self::$instance = new self();
		}
		return self::$instance;
	}