Skip to content

Commit 163e27a

Browse files
author
Yevhen Miroshnychenko
committed
MAGETWO-63216: [TD] Fix PHPDoc comments that was delivered in Sprint 4
1 parent fa6b98b commit 163e27a

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

app/code/Magento/Config/Block/System/Config/Form/Fieldset/Modules/DisableOutput.php

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,25 @@ class DisableOutput extends \Magento\Config\Block\System\Config\Form\Fieldset
1616
{
1717
/**
1818
* @var \Magento\Framework\DataObject
19+
* @deprecated Magento does not support custom disabling/enabling module output since 2.2.0 version
1920
*/
2021
protected $_dummyElement;
2122

2223
/**
2324
* @var \Magento\Config\Block\System\Config\Form\Field
25+
* @deprecated Magento does not support custom disabling/enabling module output since 2.2.0 version
2426
*/
2527
protected $_fieldRenderer;
2628

2729
/**
2830
* @var array
31+
* @deprecated Magento does not support custom disabling/enabling module output since 2.2.0 version
2932
*/
3033
protected $_values;
3134

3235
/**
3336
* @var \Magento\Framework\Module\ModuleListInterface
37+
* @deprecated Magento does not support custom disabling/enabling module output since 2.2.0 version
3438
*/
3539
protected $_moduleList;
3640

@@ -53,7 +57,8 @@ public function __construct(
5357
}
5458

5559
/**
56-
* @inheritdoc
60+
* {@inheritdoc}
61+
* @deprecated Magento does not support custom disabling/enabling module output since 2.2.0 version
5762
*/
5863
public function render(\Magento\Framework\Data\Form\Element\AbstractElement $element)
5964
{
@@ -82,6 +87,7 @@ public function render(\Magento\Framework\Data\Form\Element\AbstractElement $ele
8287
}
8388

8489
/**
90+
* @deprecated Magento does not support custom disabling/enabling module output since 2.2.0 version
8591
* @return \Magento\Framework\DataObject
8692
*/
8793
protected function _getDummyElement()
@@ -93,6 +99,7 @@ protected function _getDummyElement()
9399
}
94100

95101
/**
102+
* @deprecated Magento does not support custom disabling/enabling module output since 2.2.0 version
96103
* @return \Magento\Config\Block\System\Config\Form\Field
97104
*/
98105
protected function _getFieldRenderer()
@@ -106,6 +113,7 @@ protected function _getFieldRenderer()
106113
}
107114

108115
/**
116+
* @deprecated Magento does not support custom disabling/enabling module output since 2.2.0 version
109117
* @return array
110118
*/
111119
protected function _getValues()
@@ -122,6 +130,7 @@ protected function _getValues()
122130
/**
123131
* @param \Magento\Framework\Data\Form\Element\Fieldset $fieldset
124132
* @param string $moduleName
133+
* @deprecated Magento does not support custom disabling/enabling module output since 2.2.0 version
125134
* @return mixed
126135
*/
127136
protected function _getFieldHtml($fieldset, $moduleName)

app/code/Magento/Config/Model/Config/Parser/Comment.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* Config file parser
1818
*
1919
* It is used to parse config paths from
20-
* comment section in some configuration file.
20+
* comment section in provided configuration file.
2121
*/
2222
class Comment implements CommentParserInterface
2323
{

0 commit comments

Comments
 (0)