class TwigThemeDescriptor implements ThemeDescriptorInterface, \JsonSerializable
8
{
9
/**
10
* @var string
11
*/
12
private $template;
13
14
/**
15
* @var mixed[]
16
*/
17
private $config;
18
19
/**
20
* @param string $template The Twig resource to be loaded
21
* @param mixed[] $config An array of configuration options that will be passed to the TwigTheme. Can be used to register parameters for the extensions, ... For instance, use the "theme" key to specify the theme used.
22
*/
23
public function __construct(string $template, array $config)