staempfli/magento2-module-seo

View on GitHub
Api/UrlRetrieverInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Staempfli\Seo\Api;

use Magento\Store\Model\Store;

interface UrlRetrieverInterface
{
    /**
     * @param string|int $identifier
     * @param Store $store
     * @return string
     */
    public function getUrl($identifier, $store);
}