fix ProviderInterface

This commit is contained in:
Nikita 2013-07-04 03:11:20 +04:00
parent 24b044fe85
commit 43fc8b45b8

View File

@ -11,18 +11,20 @@ namespace Fenom;
/** /**
* Template provider interface * Template provider interface
* @package Fenom * @package Fenom
* @author Ivan Shalganov <a.cobest@gmail.com> * @author Ivan Shalganov <a.cobest@gmail.com>
*/ */
interface ProviderInterface { interface ProviderInterface
{
/** /**
* @param string $tpl * @param string $tpl
* @return bool * @return bool
*/ */
public function templateExists($tpl); public function templateExists($tpl);
/** /**
* @param string $tpl * @param string $tpl
* @param int $time * @param int $time
* @return string * @return string
*/ */
public function getSource($tpl, &$time); public function getSource($tpl, &$time);