Files
medicalalert-web-reloaded/wp/wp-content/plugins/wordpress-seo/src/presenters/abstract-presenter.php
2024-06-17 14:42:23 -04:00

26 lines
377 B
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();
}
}