From c39a9441727e01169fb4da861ce3f1553cfdb41e Mon Sep 17 00:00:00 2001 From: Franck Allimant Date: Fri, 4 Apr 2014 02:31:13 +0200 Subject: [PATCH] Added typing in assign() method comment to prevent PhpStorm warning --- core/lib/Thelia/Core/Template/ParserInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/lib/Thelia/Core/Template/ParserInterface.php b/core/lib/Thelia/Core/Template/ParserInterface.php index 9ec99360c..6156ca859 100644 --- a/core/lib/Thelia/Core/Template/ParserInterface.php +++ b/core/lib/Thelia/Core/Template/ParserInterface.php @@ -62,8 +62,8 @@ interface ParserInterface /** * Create a variable that will be available in the templates * - * @param $variable the vatiable name - * @param $value the value of the variable + * @param string $variable the variable name + * @param mixed $value the value of the variable */ public function assign($variable, $value); }