| Current Path : /var/www/clients/client3/web2/web/vendor/magefan/module-community/Api/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magefan/module-community/Api/GetModuleVersionInterface.php |
<?php
/**
* Copyright © Magefan (support@magefan.com). All rights reserved.
* Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement).
*/
namespace Magefan\Community\Api;
/**
* Return module version by module name
*
* @api
* @since 2.1.0
*/
interface GetModuleVersionInterface
{
/**
* Get module version
*
* @api
* @param string $moduleName
* @return string
*/
public function execute(string $moduleName) : string;
}