Skip to content

Commit 365331a

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

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public function getFieldsetDataValue($key)
113113
}
114114

115115
/**
116-
* {@inheritdoc}
116+
* Processing object after save data
117117
*
118118
* {@inheritdoc}. In addition, it sets status 'invalidate' for config caches
119119
*
@@ -129,7 +129,7 @@ public function afterSave()
129129
}
130130

131131
/**
132-
* {@inheritdoc}
132+
* Processing object after delete data
133133
*
134134
* {@inheritdoc}. In addition, it sets status 'invalidate' for config caches
135135
*

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
/**
1111
* Interface \Magento\Framework\App\Config\ValueInterface
12-
*
13-
* This interface cannot be marked as API since doesn't fit developers' needs of extensibility. In 2.4 we are going
12+
*
13+
* This interface cannot be marked as API since doesn't fit developers' needs of extensibility. In 2.4 we are going
1414
* to introduce a new iterface which should cover all needs and deprecate the this one with the model
1515
* {@see \Magento\Framework\App\Config\Value}
1616
*/
@@ -23,6 +23,7 @@ interface ValueInterface
2323

2424
/**
2525
* Check if config data value was changed
26+
*
2627
* @todo this method should be make as protected
2728
* @return bool
2829
*/

0 commit comments

Comments
 (0)