componentRegistrar = $componentRegistrar; } /** * @inheritDoc */ public function get($filename, $scope) { if (!$this->webapiXmlPaths) { $paths = $this->componentRegistrar->getPaths(ComponentRegistrar::MODULE); $webapiXmlPaths = []; foreach ($paths as $path) { $path = $path . '/etc/webapi.xml'; if (file_exists($path)) { $webapiXmlPaths[$path] = file_get_contents($path); } } $this->webapiXmlPaths = $webapiXmlPaths; } return $this->webapiXmlPaths; } }