Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/magento/module-store/Model/StoreResolver/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-store/Model/StoreResolver/ReaderInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Store\Model\StoreResolver;

/**
 * Interface \Magento\Store\Model\StoreResolver\ReaderInterface
 *
 * @api
 */
interface ReaderInterface
{
    /**
     * Retrieve list of stores available for scope
     *
     * @param string $scopeCode
     * @return array
     */
    public function getAllowedStoreIds($scopeCode);

    /**
     * Retrieve default store id
     *
     * @param string $scopeCode
     * @return int
     */
    public function getDefaultStoreId($scopeCode);
}