OxidServiceBridges/Internal/Framework/Module/Path/ModulePathResolverBridgeInt...

15 lines
336 B
PHP
Raw Normal View History

2021-05-07 23:35:49 +02:00
<?php
declare(strict_types=1);
namespace D3\OxidServicesBridges\Internal\Framework\Module\Path;
interface ModulePathResolverBridgeInterface
{
/**
* @param string $moduleId
* @param int $shopId
* @return string
*/
public function getFullModulePathFromConfiguration(string $moduleId, int $shopId): string;
}