for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the syntaxhighligter-bundle package.
*
* (c) 2017 WEBEWEB
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace WBW\Bundle\SyntaxHighlighterBundle\Twig\Extension;
use Twig_Extension;
use Twig_SimpleFunction;
* SyntaxHighlighter Twig extension.
* @author webeweb <https://github.com/webeweb/>
* @package WBW\Bundle\SyntaxHighlighterBundle\Twig\Extension
* @final
final class SyntaxHighlighterTwigExtension extends Twig_Extension {
* Service name.
* @var string
const SERVICE_NAME = "webeweb.bundle.syntaxhighlighterbundle.twig.extension.syntaxhighlighter";
* Constructor.
public function __construct() {
// NOTHING TO DO.
}
* Get the Twig functions.
* @return Twig_SimpleFunction[] Returns the Twig functions.
public function getFunctions() {
return [
];