phplibrary/PHPTAL/Source.php
2016-06-29 18:51:32 +03:00

16 lines
360 B
PHP

<?php
/**
* @package phptal
*/
interface PHPTAL_Source
{
/** Returns string, unique path identifying the template source. */
public function getRealPath();
/** Returns long, the template source last modified time. */
public function getLastModifiedTime();
/** Returns string, the template source. */
public function getData();
}
?>