| Current Path : /home/rtorresani/www/vendor/magento/module-sales-rule/Model/Coupon/ |
| Current File : //home/rtorresani/www/vendor/magento/module-sales-rule/Model/Coupon/CodegeneratorInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\SalesRule\Model\Coupon;
/**
* @api
* @since 100.0.2
*/
interface CodegeneratorInterface
{
/**
* Retrieve generated code
*
* @return string
*/
public function generateCode();
/**
* Retrieve delimiter
*
* @return string
*/
public function getDelimiter();
}