Skip to content

Commit 31a64cf

Browse files
committed
ACP2E-1512: Env variable config not working for store views with capital letters in the code
fixed static
1 parent 776d471 commit 31a64cf

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

lib/internal/Magento/Framework/App/Config.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
22
/**
3-
* Application configuration object. Used to access configuration when application is initialized and installed.
4-
*
53
* Copyright © Magento, Inc. All rights reserved.
64
* See COPYING.txt for license details.
75
*/
@@ -12,14 +10,14 @@
1210
use Magento\Framework\App\Config\ScopeConfigInterface;
1311

1412
/**
15-
* Class Config
13+
* Application configuration object. Used to access configuration when application is initialized and installed.
1614
*/
1715
class Config implements ScopeConfigInterface
1816
{
1917
/**
2018
* Config cache tag
2119
*/
22-
const CACHE_TAG = 'CONFIG';
20+
public const CACHE_TAG = 'CONFIG';
2321

2422
/**
2523
* @var ScopeCodeResolver

0 commit comments

Comments
 (0)