Added typing in assign() method comment to prevent PhpStorm warning

This commit is contained in:
Franck Allimant
2014-04-04 02:31:13 +02:00
parent 9523762521
commit c39a944172

View File

@@ -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);
}