From 03183b5b69205d66b971e490e71e9882374a734b Mon Sep 17 00:00:00 2001 From: Hugo Hamon Date: Tue, 22 May 2012 19:20:01 +0200 Subject: [PATCH] [Templating] added missing @return PHPDoc for LoaderInterface::isFresh method. --- src/Symfony/Component/Templating/Loader/LoaderInterface.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Symfony/Component/Templating/Loader/LoaderInterface.php b/src/Symfony/Component/Templating/Loader/LoaderInterface.php index 6dc36343fd..0e5192c63d 100644 --- a/src/Symfony/Component/Templating/Loader/LoaderInterface.php +++ b/src/Symfony/Component/Templating/Loader/LoaderInterface.php @@ -39,6 +39,8 @@ interface LoaderInterface * @param TemplateReferenceInterface $template A template * @param integer $time The last modification time of the cached template (timestamp) * + * @return Boolean + * * @api */ function isFresh(TemplateReferenceInterface $template, $time);