Notice: Undefined variable: namespace in C:\SistemasPHP\ccp\vendor\symfony\maker-bundle\src\Resources\skeleton\twig\Extension.tpl.php on line 3
;
use Twig\Extension\AbstractExtension;
use Twig\TwigFilter;
use Twig\TwigFunction;
class
Notice: Undefined variable: class_name in C:\SistemasPHP\ccp\vendor\symfony\maker-bundle\src\Resources\skeleton\twig\Extension.tpl.php on line 9
extends AbstractExtension
{
public function getFilters(): array
{
return [
// If your filter generates SAFE HTML, you should add a third
// parameter: ['is_safe' => ['html']]
// Reference: https://twig.symfony.com/doc/2.x/advanced.html#automatic-escaping
new TwigFilter('filter_name', [$this, 'doSomething']),
];
}
public function getFunctions(): array
{
return [
new TwigFunction('function_name', [$this, 'doSomething']),
];
}
public function doSomething($value)
{
// ...
}
}