daux.io/libs/Format/Base/Page.php

19 lines
311 B
PHP
Raw Normal View History

<?php namespace Todaymade\Daux\Format\Base;
interface Page
{
/**
2020-04-22 22:24:52 +02:00
* Get the converted content, without any template.
*
* @return string
*/
public function getPureContent();
/**
2020-04-22 22:24:52 +02:00
* Get the full content.
*
* @return mixed
*/
public function getContent();
}