Smile-SA/magento2-module-product-label

View on GitHub
Model/ProductLabel/Locator/LocatorInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Smile\ProductLabel\Model\ProductLabel\Locator;

use Smile\ProductLabel\Api\Data\ProductLabelInterface;

/**
 * Rule Locator interface
 */
interface LocatorInterface
{
    /**
     * Retrieve current product label.
     */
    public function getProductLabel(): ProductLabelInterface;
}