1 | <?php |
||
9 | class TemplateFinder |
||
10 | { |
||
11 | /** |
||
12 | * @var \Symfony\Component\HttpKernel\KernelInterface |
||
13 | */ |
||
14 | private $kernel; |
||
15 | |||
16 | /** |
||
17 | * @param KernelInterface $kernel |
||
18 | */ |
||
19 | public function __construct(KernelInterface $kernel) |
||
23 | |||
24 | /** |
||
25 | * @param ConfigurationInterface $configuration |
||
26 | * |
||
27 | * @return SplFileInfo[] |
||
28 | */ |
||
29 | public function find(ConfigurationInterface $configuration) |
||
42 | |||
43 | /** |
||
44 | * @param ConfigurationInterface $configuration |
||
45 | * |
||
46 | * @return array |
||
47 | */ |
||
48 | private function getTargetDirectories(ConfigurationInterface $configuration) |
||
61 | } |
||
62 |