control-freak-ide/Control-Freak-Documentation/daux/libs/Format/Base/Page.php
plastic-hub-dev-node-saturn 538369cff7 latest
2021-05-12 18:35:18 +02:00

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();
}