Update Smarty to 3.1.27

This commit is contained in:
Clemens Schwaighofer
2015-11-09 18:22:56 +09:00
parent b831924f58
commit aa73634d95
172 changed files with 16400 additions and 14623 deletions

View File

@@ -0,0 +1,39 @@
<?php
/**
* Smarty compiler exception class
*
* @package Smarty
*/
class SmartyCompilerException extends SmartyException
{
public function __toString()
{
return ' --> Smarty Compiler: ' . $this->message . ' <-- ';
}
/**
* The line number of the template error
*
* @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
*
* @type string|null
*/
public $template = null;
}