'security-http' => 'add the "SecurityBundle"',
'web-link' => 'enable "framework.web_link"',
'workflow' => 'enable "framework.workflows"',
];
public static function onUndefinedFilter(string
$name): TwigFilter|false
{ if (!
isset(self::FILTER_COMPONENTS
[$name])) { return false;
} throw new SyntaxError(self::
onUndefined($name, 'filter', self::FILTER_COMPONENTS
[$name]));
} public static function onUndefinedFunction(string
$name): TwigFunction|false
{ if (!
isset(self::FUNCTION_COMPONENTS
[$name])) { return false;
} if ('webpack-encore-bundle' === self::FUNCTION_COMPONENTS
[$name]) { return new TwigFunction($name,
static fn () => ''
);
}