Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-sales-rule/Model/Coupon/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-sales-rule/Model/Coupon/AdminCodeLimitManager.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

declare(strict_types=1);

namespace Magento\SalesRule\Model\Coupon;

use Magento\SalesRule\Model\Spi\CodeLimitManagerInterface;

/**
 * Limit manager for admin area.
 */
class AdminCodeLimitManager implements CodeLimitManagerInterface
{
    /**
     * @inheritDoc
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function checkRequest(string $code): void
    {
        //phpcs:ignore Squiz.PHP.NonExecutableCode.ReturnNotRequired
        return;
    }
}