fileCollectorFactory = $fileCollectorFactory; } /** * @inheritdoc */ public function get($filename, $scope) { $this->scope = $scope; /** @var AggregatedFileCollector $aggregatedFiles */ $aggregatedFiles = $this->fileCollectorFactory->create(); return $aggregatedFiles->collectFiles($filename); } }