/home/sharedstore/public_html/prestashop.sharedstore.ma/classes/Smarty
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/classes/Smarty/SmartyDev.php (1629B)
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
class SmartyDev extends Smarty
{
public function __construct()
{
parent::__construct();
$this->template_class = 'SmartyDevTemplate';
}
/**
* {@inheritdoc}
*/
public function fetch($template = null, $cache_id = null, $compile_id = null, $parent = null, $display = false, $merge_tpl_vars = true, $no_output_filter = false)
{
return "\n\n"
. parent::fetch($template, $cache_id, $compile_id, $parent)
. "\n\n";
}
}