AlkantarClanX12

Your IP : 3.23.101.60


Current Path : /home/thanudqk/thepball.com/wp-content/plugins/wordpress-seo/src/presenters/
Upload File :
Current File : /home/thanudqk/thepball.com/wp-content/plugins/wordpress-seo/src/presenters/abstract-presenter.php

<?php

namespace Yoast\WP\SEO\Presenters;

/**
 * Abstract_Presenter class.
 */
abstract class Abstract_Presenter {

	/**
	 * Returns the output as string.
	 *
	 * @return string The output.
	 */
	abstract public function present();

	/**
	 * Returns the output as string.
	 *
	 * @return string The output.
	 */
	public function __toString() {
		return $this->present();
	}
}