Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Supporting createTemplate() #271

Open
craigfrancis opened this issue Jan 7, 2023 · 0 comments
Open

Supporting createTemplate() #271

craigfrancis opened this issue Jan 7, 2023 · 0 comments

Comments

@craigfrancis
Copy link

It looks like twigcs is setup to check the *.twig files in a folder.

Do you think it would possible to check other sources, e.g.

echo $twig->createTemplate('Hi {{ name }}')->render(['name' => 'Name']);
$loader = new \Twig\Loader\ArrayLoader([
		'index' => 'Hi {{ name }}',
	]);

$twig = new \Twig\Environment($loader);

echo $twig->render('index', ['name' => 'Name']);
{{ include(template_from_string('Hi {{ name }}')) }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant