* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 */ namespace PrestaShop\Module\Mbo\Module\SourceRetriever; interface SourceRetrieverInterface { /** * This method will retrieve the module's ZIP from the source given. * * @param $source * * @return string */ public function get($source, ?string $expectedModuleName = null, ?array $options = []): string; }