@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Magento\Store\Api\Data;
|
||||
|
||||
interface StoreInterface
|
||||
{
|
||||
public function getWebsiteId(): int;
|
||||
|
||||
public function getStoreGroupId(): int;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Magento\Store\Api;
|
||||
|
||||
use Magento\Store\Api\Data\StoreInterface;
|
||||
|
||||
interface StoreRepositoryInterface
|
||||
{
|
||||
public function get(string $code): StoreInterface;
|
||||
}
|
||||
Reference in New Issue
Block a user