Skip to content

Commit cf23c7d

Browse files
committed
ENGCOM-3214: Add Value, ReadFactory and WriteFactory to Magento Framework's public API
1 parent 365331a commit cf23c7d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_constants.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,6 @@
712712
'Magento\Sales\Block\Reorder\Sidebar',
713713
'\Magento\Sales\CustomerData\LastOrderedItems::SIDEBAR_ORDER_LIMIT',
714714
],
715-
['ENTITY', 'Magento\Framework\App\Config\ValueInterface'],
716715
['XML_PATH_ALLOW_CURRENCIES_INSTALLED', 'Magento\Framework\Locale\CurrencyInterface'],
717716
[
718717
'DEFAULT_CURRENCY',

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Config data model
1010
*
1111
* This model is temporarily marked as API since {@see \Magento\Framework\App\Config\ValueInterface} doesn't fit
12-
* developers' needs of extensibility. In 2.4 we are going to introduce a new iterface which should cover all needs
12+
* developers' needs of extensibility. In 2.4 we are going to introduce a new interface which should cover all needs
1313
* and deprecate the mentioned together with the model
1414
*
1515
* @method string getScope()

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@
1111
* Interface \Magento\Framework\App\Config\ValueInterface
1212
*
1313
* This interface cannot be marked as API since doesn't fit developers' needs of extensibility. In 2.4 we are going
14-
* to introduce a new iterface which should cover all needs and deprecate the this one with the model
14+
* to introduce a new interface which should cover all needs and deprecate the this one with the model
1515
* {@see \Magento\Framework\App\Config\Value}
1616
*/
1717
interface ValueInterface
1818
{
1919
/**
2020
* Table name
21+
*
22+
* @deprecated since it is not used
2123
*/
2224
const ENTITY = 'config_data';
2325

0 commit comments

Comments
 (0)