smarty 3.1.39 upgrade

This commit is contained in:
Matthieu Leproux 2021-08-04 12:07:12 +02:00 committed by plegall
parent 2f5a0b7355
commit e537eac9dd
241 changed files with 15897 additions and 11403 deletions

View file

@ -7,6 +7,9 @@
*/
class SmartyCompilerException extends SmartyException
{
/**
* @return string
*/
public function __toString()
{
return ' --> Smarty Compiler: ' . $this->message . ' <-- ';
@ -18,18 +21,21 @@ class SmartyCompilerException extends SmartyException
* @type int|null
*/
public $line = null;
/**
* The template source snippet relating to the error
*
* @type string|null
*/
public $source = null;
/**
* The raw text of the error message
*
* @type string|null
*/
public $desc = null;
/**
* The resource identifier or template name
*