tests
CI / php (push) Successful in 2m56s

This commit is contained in:
2026-03-21 03:49:54 -05:00
parent d543c3bb0e
commit bbd83659a7
29 changed files with 1090 additions and 38 deletions
@@ -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;
}