Files
2021-01-14 18:04:26 +01:00

34 lines
1.3 KiB
PHP

<?php
/*************************************************************************************/
/* This file is part of the Thelia package. */
/* */
/* Copyright (c) OpenStudio */
/* email : dev@thelia.net */
/* web : http://www.thelia.net */
/* */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
/*************************************************************************************/
namespace TheliaSmarty;
use Thelia\Module\BaseModule;
use TheliaSmarty\Compiler\RegisterParserPluginPass;
class TheliaSmarty extends BaseModule
{
/*
* You may now override BaseModuleInterface methods, such as:
* install, destroy, preActivation, postActivation, preDeactivation, postDeactivation
*
* Have fun !
*/
public static function getCompilers()
{
return [
new RegisterParserPluginPass()
];
}
}