17 lines
270 B
PHP
17 lines
270 B
PHP
|
|
<?php
|
||
|
|
namespace DynCom\mysyde\common\interfaces;
|
||
|
|
/**
|
||
|
|
* Created by PhpStorm.
|
||
|
|
* User: Bauer
|
||
|
|
* Date: 6/22/2015
|
||
|
|
* Time: 11:21 PM
|
||
|
|
*/
|
||
|
|
|
||
|
|
interface PHTMLTemplate extends Template {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
public function getPHTMLPath();
|
||
|
|
|
||
|
|
}
|