| 1 | <?php |
||
| 23 | final class KernelFileResolver implements FileResolverInterface |
||
| 24 | { |
||
| 25 | use NotClonableTrait; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var KernelInterface |
||
| 29 | */ |
||
| 30 | private $kernel; |
||
| 31 | |||
| 32 | public function __construct(KernelInterface $kernel) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @inheritdoc |
||
| 39 | */ |
||
| 40 | public function resolve(array $filePaths): array |
||
| 49 | |||
| 50 | public function resolveFile(string $file): string |
||
| 69 | } |
||
| 70 |