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

19 lines
309 B
PHP

<?php namespace Todaymade\Daux\Format\Base;
interface Page
{
/**
* Get the converted content, without any template
*
* @return string
*/
public function getPureContent();
/**
* Get the full content
*
* @return mixed
*/
public function getContent();
}