Skip to content

Commit fa6b98b

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

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

app/code/Magento/Backend/Block/Template.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public function getFormKey()
7070
*
7171
* @param string $moduleName Full module name
7272
* @return boolean
73-
* @deprecated was removed from Magento
73+
* @deprecated Magento does not support custom disabling/enabling module output since 2.2.0 version
7474
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
7575
*/
7676
public function isOutputEnabled($moduleName = null)

app/code/Magento/Backend/etc/adminhtml/system.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
<label>Advanced</label>
1818
</tab>
1919
<!--
20-
@deprecated because advanced section doesn't display anymore
20+
@deprecated Magento does not support custom disabling/enabling modules output since 2.2.0 version.
21+
Section 'Advanced' was disabled. This section will be removed from code in one release.
2122
-->
2223
<section id="advanced" translate="label" type="text" sortOrder="910" showInDefault="0" showInWebsite="0" showInStore="0">
2324
<label>Advanced</label>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
namespace Magento\Config\Block\System\Config\Form\Fieldset\Modules;
77

88
/**
9-
* Displays a list of the inputs with names of the modules on tab Store->Configuration Advanced/Advanced
9+
* Displays a list of <select> tags with names of the modules on tab Stores > Configuration > Advanced / Advanced
1010
* on the store settings page.
1111
*
1212
* @method \Magento\Config\Block\System\Config\Form getForm()
13-
* @deprecated was removed from Magento
13+
* @deprecated Magento does not support custom disabling/enabling module output since 2.2.0 version
1414
*/
1515
class DisableOutput extends \Magento\Config\Block\System\Config\Form\Fieldset
1616
{

lib/internal/Magento/Framework/Module/Output/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* Checks whether the module is enabled in the configuration.
1212
*
13-
* @deprecated was removed from Magento
13+
* @deprecated Magento does not support custom disabling/enabling module output since 2.2.0 version
1414
*/
1515
class Config implements \Magento\Framework\Module\Output\ConfigInterface
1616
{

lib/internal/Magento/Framework/Module/Output/ConfigInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* Checks whether the module is enabled in the configuration.
1010
*
11-
* @deprecated was removed from Magento
11+
* @deprecated Magento does not support custom disabling/enabling module output since 2.2.0 version
1212
*/
1313
interface ConfigInterface
1414
{

0 commit comments

Comments
 (0)