* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Hook\Generator; use PrestaShop\PrestaShop\Core\Hook\HookDescription; /** * Defines contract for generating description for hook names. */ interface HookDescriptionGeneratorInterface { /** * @param string $hookName * * @return HookDescription */ public function generate($hookName); }