commit 1deab651e2ec243f1148c756c536212135cce1f7 Author: Daniel Seifert Date: Fri May 7 23:35:49 2021 +0200 initial diff --git a/Internal/Framework/Module/Path/ModulePathResolverBridge.php b/Internal/Framework/Module/Path/ModulePathResolverBridge.php new file mode 100644 index 0000000..5c204f0 --- /dev/null +++ b/Internal/Framework/Module/Path/ModulePathResolverBridge.php @@ -0,0 +1,31 @@ +modulePathResolver = $modulePathResolver; + } + + /** + * @param string $moduleId + * @param int $shopId + * @return string + */ + public function getFullModulePathFromConfiguration(string $moduleId, int $shopId): string + { + return $this->modulePathResolver->getFullModulePathFromConfiguration($moduleId, $shopId); + } +} \ No newline at end of file diff --git a/Internal/Framework/Module/Path/ModulePathResolverBridgeInterface.php b/Internal/Framework/Module/Path/ModulePathResolverBridgeInterface.php new file mode 100644 index 0000000..a420172 --- /dev/null +++ b/Internal/Framework/Module/Path/ModulePathResolverBridgeInterface.php @@ -0,0 +1,15 @@ +