13 lines
191 B
PHP
13 lines
191 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Magento\Store\Model;
|
|
|
|
class StoreManager
|
|
{
|
|
public const PARAM_RUN_CODE = 'MAGE_RUN_CODE';
|
|
|
|
public const PARAM_RUN_TYPE = 'MAGE_RUN_TYPE';
|
|
}
|