📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 05:39:12
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
presenters
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wordpress-seo/src/presenters
🔄 Refresh
✏️
Editing: abstract-presenter.php
Writable
<?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