16 lines
360 B
PHP
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();
|
|
}
|
|
|
|
?>
|