Skip to content

Commit 6e6b394

Browse files
committed
AC-8862: fix static errors
1 parent 71ce3e4 commit 6e6b394

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

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

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

1413
/**
15-
* Class Config
14+
* Application configuration object. Used to access configuration when application is initialized and installed.
1615
*/
1716
class Config implements ScopeConfigInterface
1817
{
1918
/**
2019
* Config cache tag
2120
*/
22-
const CACHE_TAG = 'CONFIG';
21+
public const CACHE_TAG = 'CONFIG';
2322

2423
/**
2524
* @var ScopeCodeResolver
@@ -134,15 +133,4 @@ public function get($configType, $path = '', $default = null)
134133

135134
return $result !== null ? $result : $default;
136135
}
137-
138-
/**
139-
* Disable show internals with var_dump
140-
*
141-
* @see https://www.php.net/manual/en/language.oop5.magic.php#object.debuginfo
142-
* @return array
143-
*/
144-
public function __debugInfo()
145-
{
146-
return [];
147-
}
148136
}

0 commit comments

Comments
 (0)