| 1 |
<?php |
| 2 |
|
| 3 |
namespace Yoast\WP\SEO\Presenters; |
| 4 |
|
| 5 |
/** |
| 6 |
* Abstract_Presenter class. |
| 7 |
*/ |
| 8 |
abstract class Abstract_Presenter { |
| 9 |
|
| 10 |
/** |
| 11 |
* Returns the output as string. |
| 12 |
* |
| 13 |
* @return string The output. |
| 14 |
*/ |
| 15 |
abstract public function present(); |
| 16 |
|
| 17 |
/** |
| 18 |
* Returns the output as string. |
| 19 |
* |
| 20 |
* @return string The output. |
| 21 |
*/ |
| 22 |
public function __toString() { |
| 23 |
return $this->present(); |
| 24 |
} |
| 25 |
} |
| 26 |
|