📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 10:26:53
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
plugins
/
wordpress-seo
/
src
/
presenters
✏️
Editing: 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(); } }
💾 Save Changes
❌ Cancel