Skip to content

Commit 8d7d902

Browse files
author
Oleksii Korshenko
committed
MAGETWO-71174: Update doc block information in php classes with @deprecated and @SInCE tags
- updated missing items
1 parent 4b56264 commit 8d7d902

File tree

5 files changed

+21
-6
lines changed

5 files changed

+21
-6
lines changed

app/code/Magento/Catalog/Model/ResourceModel/Product/Gallery.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ class Gallery extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
2525
const GALLERY_VALUE_TO_ENTITY_TABLE = 'catalog_product_entity_media_gallery_value_to_entity';
2626
/**#@-*/
2727

28-
/**#@-*/
28+
/**
29+
* @var \Magento\Framework\EntityManager\EntityMetadata
30+
* @since 101.0.0
31+
*/
2932
protected $metadata;
3033

3134
/**

app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Categories.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ class Categories extends AbstractModifier
3131
const CATEGORY_TREE_ID = 'CATALOG_PRODUCT_CATEGORY_TREE';
3232
/**#@-*/
3333

34-
/**#@-*/
34+
/**
35+
* @var CategoryCollectionFactory
36+
* @since 101.0.0
37+
*/
3538
protected $categoryCollectionFactory;
3639

3740
/**
@@ -360,7 +363,7 @@ protected function getCategoriesTree($filter = null)
360363
$categoryById[$category->getId()]['label'] = $category->getName();
361364
$categoryById[$category->getParentId()]['optgroup'][] = &$categoryById[$category->getId()];
362365
}
363-
366+
364367
$this->getCacheManager()->save(
365368
$this->serializer->serialize($categoryById[CategoryModel::TREE_ROOT_ID]['optgroup']),
366369
self::CATEGORY_TREE_ID . '_' . $filter,

app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,10 @@ class CustomOptions extends AbstractModifier
9494
const CUSTOM_OPTIONS_LISTING = 'product_custom_options_listing';
9595
/**#@-*/
9696

97-
/**#@-*/
97+
/**
98+
* @var LocatorInterface
99+
* @since 101.0.0
100+
*/
98101
protected $locator;
99102

100103
/**

app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Images.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ class Images extends AbstractModifier
2626
const CODE_SWATCH_IMAGE = 'swatch_image';
2727
/**#@-*/
2828

29-
/**#@-*/
29+
/**
30+
* @var LocatorInterface
31+
* @since 101.0.0
32+
*/
3033
protected $locator;
3134

3235
/**

app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/ScheduleDesignUpdate.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ class ScheduleDesignUpdate extends AbstractModifier
2222
const CODE_CUSTOM_DESIGN_TO = 'custom_design_to';
2323
/**#@-*/
2424

25-
/**#@-*/
25+
/**
26+
* @var ArrayManager
27+
* @since 101.0.0
28+
*/
2629
protected $arrayManager;
2730

2831
/**

0 commit comments

Comments
 (0)