Skip to content

Commit 57b9848

Browse files
author
Oleksii Korshenko
committed
MAGETWO-71174: Update doc block information in php classes with @deprecated and @SInCE tags
- fixed missing items
1 parent 5a63e56 commit 57b9848

File tree

115 files changed

+130
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+130
-5
lines changed

app/code/Magento/Backend/Block/Widget/Container.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ class Container extends \Magento\Backend\Block\Template implements ContainerInte
2929
* So called "container controller" to specify group of blocks participating in some action
3030
*
3131
* @var string
32+
* @since 2.0.0
3233
*/
3334
protected $_controller = 'empty';
3435

app/code/Magento/Backend/Block/Widget/Grid/Container.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ class Container extends \Magento\Backend\Block\Widget\Container
2929

3030
/**
3131
* @var string
32+
* @since 2.0.0
3233
*/
3334
protected $_addButtonLabel;
3435

app/code/Magento/Bundle/Model/Option.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ class Option extends \Magento\Framework\Model\AbstractExtensibleModel implements
3333
* Default selection object
3434
*
3535
* @var \Magento\Catalog\Model\Product|null
36+
* @since 2.0.0
3637
*/
3738
protected $defaultSelection = null;
3839

app/code/Magento/Bundle/Model/Source/Option/Type.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ class Type extends \Magento\Framework\Model\AbstractExtensibleModel implements
2929

3030
/**
3131
* @var array
32+
* @since 2.0.0
3233
*/
3334
protected $options = [];
3435

app/code/Magento/Catalog/Block/ShortcutButtons.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class ShortcutButtons extends Template
2828

2929
/**
3030
* @var array
31+
* @since 2.0.0
3132
*/
3233
protected $_shortcuts = [];
3334

app/code/Magento/Catalog/Model/Category.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ class Category extends \Magento\Catalog\Model\AbstractModel implements
9090
* Prefix of model events names
9191
*
9292
* @var string
93+
* @since 2.0.0
9394
*/
9495
protected $_eventPrefix = 'catalog_category';
9596

app/code/Magento/Catalog/Model/Product/Option.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ class Option extends AbstractExtensibleModel implements ProductCustomOptionInter
6363

6464
/**
6565
* @var Product
66+
* @since 2.0.0
6667
*/
6768
protected $product;
6869

app/code/Magento/Catalog/Model/Product/Option/Value.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ class Value extends AbstractModel implements \Magento\Catalog\Api\Data\ProductCu
4444

4545
/**
4646
* @var array
47+
* @since 2.0.0
4748
*/
4849
protected $_values = [];
4950

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class Gallery extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
2727

2828
/**
2929
* @var \Magento\Framework\EntityManager\EntityMetadata
30+
* @since 2.1.0
3031
*/
3132
protected $metadata;
3233

app/code/Magento/Catalog/Plugin/Model/ResourceModel/Config.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ class Config
2222
const PRODUCT_LISTING_SORT_BY_ATTRIBUTES_CACHE_ID = 'PRODUCT_LISTING_SORT_BY_ATTRIBUTES';
2323
/**#@-*/
2424

25-
/** @var \Magento\Framework\App\CacheInterface */
25+
/**
26+
* @var \Magento\Framework\App\CacheInterface
27+
* @since 2.0.0
28+
*/
2629
protected $cache;
2730

2831
/**

0 commit comments

Comments
 (0)