11 lines
138 B
PHP
11 lines
138 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Magento\Store\Model;
|
|
|
|
interface ScopeInterface
|
|
{
|
|
public const SCOPE_WEBSITE = 'website';
|
|
}
|