Skip to content

Commit 7b35864

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

File tree

3 files changed

+7
-13
lines changed

3 files changed

+7
-13
lines changed

app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSet/CollectorFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class CollectorFactory
3232

3333
/**
3434
* @param ObjectManagerInterface $objectManager
35-
* @param array $types array for example
35+
* @param array $types array of collector types that are available for creation, for example
3636
* ```php
3737
* array ('type' => 'collector class name ')
3838
* ```

lib/internal/Magento/Framework/Module/Manager.php

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ class Manager
2121
* The checker of output modules.
2222
*
2323
* @var Output\ConfigInterface the config checker of output modules.
24-
* @deprecated Added to not break backward compatibility of the constructor signature
25-
* by injecting the new dependency directly.
26-
* The method can be removed in a future major release, when constructor signature can be changed
2724
*/
2825
private $outputConfig;
2926

@@ -38,9 +35,6 @@ class Manager
3835
* The list of config paths to ignore.
3936
*
4037
* @var array the list of config paths to ignore.
41-
* @deprecated Added to not break backward compatibility of the constructor signature
42-
* by injecting the new dependency directly.
43-
* The method can be removed in a future major release, when constructor signature can be changed
4438
*/
4539
private $outputConfigPaths;
4640

@@ -79,8 +73,7 @@ public function isEnabled($moduleName)
7973
* @param string $moduleName the fully-qualified module name.
8074
*
8175
* @return boolean
82-
* @deprecated because new api was introduced
83-
* @see \Magento\Framework\Module\Manager::isEnabled()
76+
* @deprecated Magento does not support custom disabling/enabling module output since 2.2.0 version
8477
*/
8578
public function isOutputEnabled($moduleName)
8679
{
@@ -93,7 +86,8 @@ public function isOutputEnabled($moduleName)
9386
* @param string $moduleName Fully-qualified module name
9487
*
9588
* @return boolean
96-
* @deprecated is not supported anymore
89+
* @deprecated Magento does not support custom disabling/enabling module output since 2.2.0 version.
90+
* The method can be removed in a future major release
9791
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
9892
*/
9993
protected function _isCustomOutputConfigEnabled($moduleName)

lib/internal/Magento/Framework/View/Element/AbstractBlock.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ public function escapeUrl($string)
949949
*
950950
* @param string $data
951951
* @return string
952-
* @deprecated because \Magento\Framework\Escaper::escapeXssInUrl() is deprecated
952+
* @deprecated
953953
*/
954954
public function escapeXssInUrl($data)
955955
{
@@ -964,7 +964,7 @@ public function escapeXssInUrl($data)
964964
* @param string $data
965965
* @param bool $addSlashes
966966
* @return string
967-
* @deprecated because \Magento\Framework\Escaper::escapeQuote() is deprecated
967+
* @deprecated
968968
*/
969969
public function escapeQuote($data, $addSlashes = false)
970970
{
@@ -977,7 +977,7 @@ public function escapeQuote($data, $addSlashes = false)
977977
* @param string|array $data
978978
* @param string $quote
979979
* @return string|array
980-
* @deprecated because \Magento\Framework\Escaper::escapeJsQuote() is deprecated
980+
* @deprecated
981981
*/
982982
public function escapeJsQuote($data, $quote = '\'')
983983
{

0 commit comments

Comments
 (0)