Unlock this challenge:
Suppose you run php bin/console debug:container and see the following service:
php bin/console debug:container
twig.loader.native_filesystem Twig\Loader\FilesystemLoader
How could you autowire this service into a controller?
It is not possible to autowire this service.
use twig\loader\native_filesystem; public function someController(native_filesystem $twigFilesystem)
use Twig\Loader\FilesystemLoader; public function someController(FilesystemLoader $twigFilesystem)
use Twig\Loader\FilesystemLoader; public function someController(/* twig.loader.native_filesystem */ FilesystemLoader $twigFilesystem)